11 lines
213 B
C#
11 lines
213 B
C#
|
|
namespace Brizco.Domain.Enums;
|
|||
|
|
|
|||
|
|
public enum TaskScheduleType
|
|||
|
|
{
|
|||
|
|
[Display(Name = "روزانه")]
|
|||
|
|
Daily,
|
|||
|
|
[Display(Name = "هفتگی")]
|
|||
|
|
Weekly,
|
|||
|
|
[Display(Name = "روز مشخص")]
|
|||
|
|
Custom
|
|||
|
|
}
|