PIbd-22_Turner_I.A._Plumbin.../PlumbingRepair/PlumbingRepairContracts/SearchModels/StoreSearchModel.cs
2023-02-20 19:09:30 +04:00

15 lines
301 B
C#

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; }
}
}