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