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

26 lines
610 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Reward;
public class CreateRewardViewModel
{
public List<long> EmployeeIds { get; set; }
public long WorkshopId { get; set; }
/// <summary>
/// مبلغ پاداش
/// </summary>
public string Amount { get; set; }
/// <summary>
/// توضیحات
/// </summary>
public string Description { get; set; }
/// <summary>
/// شخصی که پاداش را داده است
/// </summary>
public long RewardedByAccountId { get; set; }
public string GrantDate { get; set; }
}