24 lines
724 B
C#
24 lines
724 B
C#
using _0_Framework.Application;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Leave;
|
|
|
|
public class LeaveListMultipleDto
|
|
{
|
|
/// <summary>
|
|
/// لیست گروهبندی شده بر اساس سال و ماه
|
|
/// اگر در جستجو پرسنل انتخاب شود
|
|
/// </summary>
|
|
public List<GroupLeaveListDto>? GroupLeaveListDto { get; set; }
|
|
|
|
/// <summary>
|
|
/// لیست نرمال PageResult
|
|
/// </summary>
|
|
public PagedResult<leaveListDto>? leaveListDto { get; set; }
|
|
|
|
/// <summary>
|
|
/// مجموع مرخصی پرسنل
|
|
/// اگر پرسنل انتخاب شده باشد
|
|
/// </summary>
|
|
public string? SumOfEmployeeleaves { get; set; }
|
|
} |