24 lines
659 B
C#
24 lines
659 B
C#
using AircraftPlantDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AircraftPlantContracts.BindingModels
|
|
{
|
|
public class ShopBindingModel : IShopModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string ShopName { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public DateTime DateOpening { get; set; } = DateTime.Now;
|
|
public Dictionary<int, (IPlaneModel, int)> ShopPlanes
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
public int MaxPlanes { get; set; }
|
|
}
|
|
}
|