ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryDataModels/Models/ICannedModel.cs

11 lines
238 B
C#
Raw Normal View History

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