using System; using _0_Framework.Application; namespace Company.Domain.CustomizeCheckoutTempAgg.ValueObjects; public class CustomizeCheckoutTempReward { public CustomizeCheckoutTempReward(string amount, string description, DateTime grantDate, string grantDateFa, IsActive isActive, string title) { Amount = amount; Description = description; GrantDate = grantDate; GrantDateFa = grantDateFa; IsActive = isActive; Title = title; } /// /// مبلغ پاداش /// public string Amount { get; private set; } /// /// توضیحات /// public string Description { get; private set; } /// /// تاریخ اعطای پاداش /// public DateTime GrantDate { get; set; } /// /// تاریخ اعطای پاداش /// public string GrantDateFa { get; set; } public IsActive IsActive { get; private set; } public string Title { get; set; } }