PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantDataModels/Models/IShopModel.cs
2023-04-21 04:01:40 +03:00

18 lines
432 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpening { get; }
public int Capacity { get; }
Dictionary<int, (IReinforcedModel, int)> Reinforceds { get; }
}
}