PIbd-22_Isaeva_A.I._FishFac.../FishFactoryDataModels/Models/ICannedModel.cs

9 lines
205 B
C#
Raw Normal View History

2024-02-05 19:09:54 +04:00
namespace FishFactoryDataModel.Models
{
public interface ICannedModel : IId
{
string CannedName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> CannedComponents { get; }
}
}