10 lines
239 B
C#
10 lines
239 B
C#
|
namespace ConfectioneryDataModels.Models
|
|||
|
{
|
|||
|
public interface IPastryModel : IId
|
|||
|
{
|
|||
|
string PastryName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IComponentModel, int)> PastryComponents { get; }
|
|||
|
}
|
|||
|
}
|