PIbd-22_Shabunov_O.A._SushiBar/SushiBarDataModels/Models/IPromotion.cs
2024-05-15 15:07:09 +04:00

12 lines
203 B
C#

namespace SushiBarDataModels.Models
{
public interface IPromotion : IId
{
string PromotionName { get; }
float Discount { get; }
double TriggeringSum { get; }
}
}