11 lines
245 B
C#
Raw Normal View History

namespace IceCreamShopDataModels.Models
{
public interface IIceCreamModel : IId
{
string IceCreamName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> IceCreamComponents { get; }
}
}