24 lines
816 B
C#
24 lines
816 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.Leave;
|
|
|
|
public class LeaveSearchModel
|
|
{
|
|
public string StartLeave { get; set; }
|
|
public string EndLeave { get; set; }
|
|
public DateTime? StartLeaveGr { get; set; }
|
|
public DateTime? EndLeaveGr { get; set; }
|
|
public string LeaveHourses { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public string PaidLeaveType { get; set; }
|
|
public string LeaveType { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
public bool IsAccepted { get; set; }
|
|
public string Decription { get; set; }
|
|
public int Year { get; set; }
|
|
public int Month { get; set; }
|
|
public int PageIndex { get; set; }
|
|
public bool IsInvalid { get; set; }
|
|
} |