12 lines
203 B
C#
Raw Permalink Normal View History

2024-05-15 15:07:09 +04:00
namespace SushiBarDataModels.Models
{
public interface IPromotion : IId
{
string PromotionName { get; }
float Discount { get; }
double TriggeringSum { get; }
}
}