using System.Collections.Generic; using _0_Framework.Application; namespace CompanyManagment.App.Contracts.Reward; public class CreateRewardViewModel { public List EmployeeIds { get; set; } public long WorkshopId { get; set; } /// /// مبلغ پاداش /// public string Amount { get; set; } /// /// توضیحات /// public string Description { get; set; } public string GrantDate { get; set; } public string Title { get; set; } }