SushiBarBase/SushiBar/SushiBarDataModels/Models/IProductModel.cs
2024-02-05 16:44:05 +04:00

13 lines
304 B
C#

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