Files
Backend-Api/CompanyManagment.App.Contracts/Reward/CreateRewardViewModel.cs
2025-04-13 22:23:25 +03:30

28 lines
543 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
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; }
public string GrantDate { get; set; }
public string Title { get; set; }
}