PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/SearchModels/PromotionSearchModel.cs

12 lines
233 B
C#
Raw Permalink Normal View History

2024-05-15 21:22:01 +04:00
namespace SushiBarContracts.SearchModels
{
public class PromotionSearchModel
{
2024-05-16 17:13:55 +04:00
public int? Id { get; set; }
2024-05-15 21:22:01 +04:00
public float? Discount { get; set; }
public double? TriggeringSum { get; set; }
}
}