From c3d10d9d1c2f28938d81656a1b661af58c6d02fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=9A=D0=BE?= =?UTF-8?q?=D0=BB=D0=BE=D1=81=D0=BE=D0=B2?= Date: Fri, 8 Nov 2024 11:11:55 +0100 Subject: [PATCH] VCST-1659: Added "Name" field for the Discount class feat: Added "Name" field for the Discount class --- src/VirtoCommerce.CoreModule.Core/Common/Discount.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VirtoCommerce.CoreModule.Core/Common/Discount.cs b/src/VirtoCommerce.CoreModule.Core/Common/Discount.cs index cb34e8a0f..2348eba76 100644 --- a/src/VirtoCommerce.CoreModule.Core/Common/Discount.cs +++ b/src/VirtoCommerce.CoreModule.Core/Common/Discount.cs @@ -11,6 +11,7 @@ public class Discount : Entity, ICloneable public virtual decimal DiscountAmountWithTax { get; set; } public string Coupon { get; set; } public string Description { get; set; } + public string Name { get; set; } #region ICloneable members