ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryDataModels/Models/ICannedModel.cs
2024-02-25 14:03:09 +04:00

11 lines
238 B
C#

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