18 lines
436 B
C#
Raw Normal View History

2023-04-21 03:43:43 +03:00
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; }
2023-04-21 04:01:40 +03:00
public int Capacity { get; }
2023-05-21 15:02:08 +03:00
Dictionary<int, (IReinforcedModel, int)> ShopReinforceds { get; }
2023-04-21 03:43:43 +03:00
}
}