16 lines
487 B
C#
Raw Normal View History

2024-03-14 19:28:27 +04:00
using CarRepairShopDataModels;
using CarRepairShopDataModels.Models;
namespace CarRepairShopContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string ShopName { get; set; }
public string Address { get; set; }
public DateTime DateOpen { get; set; }
public int MaxCapacity { get; set; }
public Dictionary<int, (IRepairModel, int)> ShopRepairs { get; set; } = new();
}
}