ISEbd-21_Putilin_P.A._Preca.../PrecastConcretePlant/PrecastConcretePlantDataModels/IShopModel.cs

13 lines
313 B
C#
Raw Normal View History

2023-04-11 21:25:59 +04:00
using PrecastConcretePlantDataModels.Models;
namespace PrecastConcretePlantDataModels
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (IReinforcedModel, int)> Reinforceds { get; }
}
}