2023-04-11 01:53:51 +04:00

15 lines
345 B
C#

using LawFirmDataModels;
using LawFirmDataModels.Models;
namespace LawFirmDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
public int Capacity { get; }
Dictionary<int, (IDocumentModel, int)> ShopDocuments { get; }
}
}