28 lines
753 B
C#
28 lines
753 B
C#
using System;
|
|
using _0_Framework.Application;
|
|
|
|
namespace CompanyManagment.App.Contracts.Reward;
|
|
|
|
public class RewardViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string Amount { get; set; }
|
|
public double AmountDouble { get; set; }
|
|
public string GrantDateFa { get; set; }
|
|
public DateTime GrantDateGr { get; set; }
|
|
public string Description { get; set; }
|
|
public string CreationDate { get; set; }
|
|
public IsActive IsActive { get; set; }
|
|
|
|
#region Pooya
|
|
|
|
public string MonthFa { get; set; }
|
|
public string YearFa { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
#endregion
|
|
} |