PIbd-22_Turner_I.A._Plumbin.../PlumbingRepair/PlumbingRepairContracts/SearchModels/StoreSearchModel.cs

15 lines
301 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairContracts.SearchModels
{
public class StoreSearchModel
{
public int? Id { get; set; }
public string? StoreName { get; set; }
}
}