Files
Backend-Api/CompanyManagment.App.Contracts/Reward/RewardViewModel.cs
2025-01-19 15:53:36 +03:30

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
}