11 lines
250 B
C#
Raw Normal View History

2024-02-28 17:12:10 +04:00
namespace SushiBarDataModels.Models
{
public interface IShopModel
{
string ShopName { get; }
string Address { get; }
DateTime DateCreate { get; }
2024-05-05 18:56:39 +04:00
Dictionary<int, (ISushiModel, int)> ShopSushi {get;}
2024-02-28 17:12:10 +04:00
}
}