12 lines
314 B
C#
Raw Normal View History

2023-02-13 15:18:58 +04:00
namespace SushiBarDataModels.Models
{
public interface IStoreModel : IId
{
2023-02-13 15:35:09 +04:00
public string StoreName { get; }
2023-03-11 21:23:26 +04:00
public string StoreAddress { get; }
2023-02-13 15:18:58 +04:00
DateTime OpeningDate { get; }
Dictionary<int, (ISushiModel, int)> Sushis { get; }
2023-03-11 21:23:26 +04:00
public int maxSushi { get; }
2023-02-13 15:18:58 +04:00
}
}