2023-03-11 21:23:26 +04:00

12 lines
314 B
C#

namespace SushiBarDataModels.Models
{
public interface IStoreModel : IId
{
public string StoreName { get; }
public string StoreAddress { get; }
DateTime OpeningDate { get; }
Dictionary<int, (ISushiModel, int)> Sushis { get; }
public int maxSushi { get; }
}
}