Files
Backend-Api/CompanyManagment.App.Contracts/Reward/CreateRewardViewModel.cs
2024-10-23 20:58:10 +03:30

24 lines
567 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 double Amount { get; set; }
/// <summary>
/// توضیحات
/// </summary>
public string Description { get; set; }
/// <summary>
/// شخصی که پاداش را داده است
/// </summary>
public long RewardedByAccountId { get; set; }
}