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

10 lines
195 B
C#
Raw Normal View History

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