PIbd-22_Shabunov_O.A._SushiBar/SushiBarDataModels/Models/IPromotion.cs

12 lines
203 B
C#
Raw Normal View History

2024-05-15 15:07:09 +04:00
namespace SushiBarDataModels.Models
{
public interface IPromotion : IId
{
string PromotionName { get; }
float Discount { get; }
double TriggeringSum { get; }
}
}