DocSpace-buildtools/common/ASC.Core.Common/Core/EmployeeStatus.cs

12 lines
212 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Core.Users;
[Flags]
public enum EmployeeStatus
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
Active = 1,
Terminated = 2,
LeaveOfAbsence = 4,
All = Active | Terminated | LeaveOfAbsence,
Default = Active | LeaveOfAbsence
}