10 lines
221 B
C#
Raw Normal View History

2024-04-07 20:30:19 +04:00
namespace ShipyardDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
Dictionary<int, (IShipModel, int)> ShopShips { get; }
}
}