13 lines
304 B
C#
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; }
|
|
}
|
|
}
|