28 lines
543 B
C#
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; }
|
|
} |