Files
Backend-Api/CompanyManagment.App.Contracts/Leave/LeavErrorViewModel.cs
2025-10-01 16:32:58 +03:30

22 lines
631 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Leave
{
public class LeavErrorViewModel
{
public bool HasChekout { get; set; }
public string CheckoutErrMessage { get; set; }
public bool HasLeftWork { get; set; }
public string LeftWorlErrMessage { get; set; }
public bool HasNotContract { get; set; }
public string ContractErrMessage { get; set; }
public bool HasHolidayError { get; set; }
public string HolidayErrorMessage { get; set; }
}
}