PIbd-22_Isaeva_A.I._FishFac.../FishFactoryDataModels/Models/ICannedModel.cs
2024-02-05 19:09:54 +04:00

9 lines
205 B
C#

namespace FishFactoryDataModel.Models
{
public interface ICannedModel : IId
{
string CannedName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> CannedComponents { get; }
}
}