2024-11-12 13:07:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EmployeeManagmentDataModels.Enums
|
|
|
|
|
{
|
2024-11-12 22:10:44 +04:00
|
|
|
|
public enum VacationStatus
|
2024-11-12 13:07:37 +04:00
|
|
|
|
{
|
2024-11-12 22:10:44 +04:00
|
|
|
|
Planned, // Запланированный отпуск
|
|
|
|
|
Approved, // Одобренный отпуск
|
|
|
|
|
Taken // Отпуск использован
|
2024-11-12 13:07:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|