PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairContracts/SearchModels/ShopSearchModel.cs

16 lines
300 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 ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}