2024-02-25 20:02:29 +04:00

9 lines
221 B
C#

namespace ShipyardDataModels.Models
{
public interface IShipModel : IId
{
string ShipName { get; }
double Price { get; }
Dictionary<int, (IDetailModel, int)> ShipDetails { get; }
}
}