SushiBarBase/SushiBar/SushiBarDataModels/Models/IComponentModel.cs

9 lines
165 B
C#
Raw Permalink Normal View History

namespace SushiBarDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}