12 lines
203 B
C#
12 lines
203 B
C#
namespace SushiBarDataModels.Models
|
|
{
|
|
public interface IPromotion : IId
|
|
{
|
|
string PromotionName { get; }
|
|
|
|
float Discount { get; }
|
|
|
|
double TriggeringSum { get; }
|
|
}
|
|
}
|