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

17 lines
524 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 MaxMonthDays
{
/// <summary>
/// تعداد روز های ماه به صورت عادی باشد و تغییری در آن اعمال نشود
/// </summary>
Default,
/// <summary>
/// تمامی ماه ها 30 روزه حساب شوند
/// </summary>
ThirtyDaysForAllMonth,
///// <summary>
///// تمامی ماه ها 30 روزه حساب شوند ولی اسفند 29 روزه
///// </summary>
//ThirtyDaysForAllMonthExceptEsfand
}