22 lines
631 B
C#
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; }
|
|
}
|
|
}
|