PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/SearchModels/PromotionSearchModel.cs
2024-05-16 17:13:55 +04:00

12 lines
233 B
C#

namespace SushiBarContracts.SearchModels
{
public class PromotionSearchModel
{
public int? Id { get; set; }
public float? Discount { get; set; }
public double? TriggeringSum { get; set; }
}
}