11 lines
238 B
C#
11 lines
238 B
C#
|
namespace FishFactoryDataModels.Models
|
|||
|
{
|
|||
|
public interface ICannedModel : IId
|
|||
|
{
|
|||
|
string CannedName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IComponentModel, int)> CannedComponents { get; }
|
|||
|
}
|
|||
|
}
|
|||
|
|