40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// مبلغ پاداش
|
|
/// </summary>
|
|
public string Amount { get; private set; }
|
|
|
|
/// <summary>
|
|
/// توضیحات
|
|
/// </summary>
|
|
public string Description { get; private set; }
|
|
/// <summary>
|
|
/// تاریخ اعطای پاداش
|
|
/// </summary>
|
|
public DateTime GrantDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// تاریخ اعطای پاداش
|
|
/// </summary>
|
|
public string GrantDateFa { get; set; }
|
|
|
|
|
|
public IsActive IsActive { get; private set; }
|
|
public string Title { get; set; }
|
|
} |