11 lines
245 B
C#
11 lines
245 B
C#
namespace IceCreamShopDataModels.Models
|
|
{
|
|
public interface IIceCreamModel : IId
|
|
{
|
|
string IceCreamName { get; }
|
|
|
|
double Price { get; }
|
|
|
|
Dictionary<int, (IComponentModel, int)> IceCreamComponents { get; }
|
|
}
|
|
} |