PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/BindingModels/PromotionBindingModel.cs

14 lines
299 B
C#
Raw Normal View History

2024-05-15 21:37:18 +04:00
namespace SushiBarContracts.BindingModels
{
public class PromotionBindingModel
{
2024-05-16 17:13:55 +04:00
public int Id { get; set; }
2024-05-15 21:37:18 +04:00
public string PromotionName { get; set; } = string.Empty;
public float Discount { get; set; }
public double TriggeringSum { get; set; }
}
}