20 lines
568 B
C#
Raw Normal View History

2024-05-01 21:35:57 +04:00
using MotorPlantDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantContracts.BindingModels
{
2024-05-05 21:43:24 +04:00
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string ShopName { get; set; } = string.Empty;
public string Adress { get; set; } = string.Empty;
public DateTime OpeningDate { get; set; } = DateTime.Now;
public Dictionary<int, (IEngineModel, int)> ShopEngines { get; set; } = new();
2024-06-03 01:11:08 +04:00
public int MaxCount { get; set; }
2024-05-05 21:43:24 +04:00
}
2024-05-01 21:35:57 +04:00
}