Files
moadiran/Shared/Enums/StatusTicket.cs

22 lines
559 B
C#
Raw Permalink Normal View History

2024-03-30 15:10:36 +03:30
using System.ComponentModel.DataAnnotations;
2024-05-01 15:42:21 +03:30
namespace Shared.DTOs
2024-03-30 15:10:36 +03:30
{
public enum StatusTicket
{
2024-05-04 02:53:36 +03:30
[Display(Name = "فرد ناشناس")]//
2024-03-30 15:10:36 +03:30
unknownPerson,
[Display(Name = "در انتظار بررسی")]
Awaitingreview,
[Display(Name = "خوانده شده/ در حال بررسی")]
Read_Checking,
[Display(Name = "پاسخ داده شده")]
hasbeenanswered,
2024-05-04 02:53:36 +03:30
[Display(Name = "پاِیان")]//
2024-03-30 15:10:36 +03:30
End,
2024-05-04 02:53:36 +03:30
[Display(Name = "انصراف")]//
2024-03-30 15:10:36 +03:30
optout,
}
}