Files
Backend-Api/CompanyManagment.App.Contracts/Reward/EditRewardViewModel.cs

12 lines
311 B
C#

using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.Reward;
public class EditRewardViewModel:CreateRewardViewModel
{
public long Id { get; set; }
public IsActive IsActive { get; set; }
public long EmployeeId { get; set; }
public string EmployeeFullName { get; set; }
}