11 lines
286 B
C#
Raw Normal View History

2023-02-13 15:18:58 +04:00
namespace SushiBarDataModels.Models
{
public interface IStoreModel : IId
{
public string StoreName { get; set; }
public string StoreAdress { get; set; }
DateTime OpeningDate { get; }
Dictionary<int, (ISushiModel, int)> Sushis { get; }
}
}