PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/SearchModels/PromotionSearchModel.cs
2024-05-15 21:22:01 +04:00

10 lines
195 B
C#

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