2023-09-08 12:25:21 +03:30
|
|
|
|
namespace Brizco.Domain.Enums;
|
|
|
|
|
|
|
2023-09-15 12:37:02 +03:30
|
|
|
|
public enum ActivityStatus
|
2023-09-08 12:25:21 +03:30
|
|
|
|
{
|
|
|
|
|
|
[Display(Name = "ساخته شده")]
|
2024-03-14 11:09:31 +03:30
|
|
|
|
Created = 0,
|
2023-09-08 12:25:21 +03:30
|
|
|
|
[Display(Name = "در حال انجام")]
|
2024-03-14 11:09:31 +03:30
|
|
|
|
InProgress = 1,
|
2023-09-08 12:25:21 +03:30
|
|
|
|
[Display(Name = "انجام شده")]
|
2024-03-14 11:09:31 +03:30
|
|
|
|
Done = 2,
|
2023-12-09 09:54:34 +03:30
|
|
|
|
[Display(Name = "تمام شده")]
|
2024-03-14 11:09:31 +03:30
|
|
|
|
Complete = 3,
|
2023-09-08 12:25:21 +03:30
|
|
|
|
[Display(Name = "انجام نشده")]
|
2024-03-14 11:09:31 +03:30
|
|
|
|
UnDone = 4
|
2023-09-08 12:25:21 +03:30
|
|
|
|
}
|