using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EmployeeManagmentDataModels.Enums { public enum VacationStatus { Planned, // Запланированный отпуск Approved, // Одобренный отпуск Taken // Отпуск использован } }