2024-02-05 16:26:35 +04:00

13 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace AbstractSushiBarDataModels.Models
{
public interface IProductModel : IId
{
string ProductName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ProductComponents { get; }
}
}