10 lines
221 B
C#
10 lines
221 B
C#
|
namespace ShipyardDataModels.Models
|
|||
|
{
|
|||
|
public interface IShopModel : IId
|
|||
|
{
|
|||
|
string ShopName { get; }
|
|||
|
string Address { get; }
|
|||
|
DateTime DateOpen { get; }
|
|||
|
Dictionary<int, (IShipModel, int)> ShopShips { get; }
|
|||
|
}
|
|||
|
}
|