Files
Backend-Api/0_Framework/Domain/CustomizeCheckoutShared/Enums/HolidayWork.cs

13 lines
384 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace _0_Framework.Domain.CustomizeCheckoutShared.Enums;
public enum HolidayWork
{
/// <summary>
/// حالت عادی به این معناست که پرسنل ها در روز های تعطیل سرکار نمیروند
/// </summary>
Default,
/// <summary>
/// در روز های تعطیل کار میکنند
/// </summary>
WorkInHolidays
}