serv full ticket

This commit is contained in:
mmrbnjd
2024-05-01 15:42:21 +03:30
parent 827aa36860
commit 720b2f00ce
23 changed files with 353 additions and 58 deletions

View File

@@ -0,0 +1,21 @@
using System.ComponentModel.DataAnnotations;
namespace Shared.DTOs
{
public enum StatusTicket
{
[Display(Name = "فرد ناشناس")]
unknownPerson,
[Display(Name = "در انتظار بررسی")]
Awaitingreview,
[Display(Name = "خوانده شده/ در حال بررسی")]
Read_Checking,
[Display(Name = "پاسخ داده شده")]
hasbeenanswered,
[Display(Name = "پاِیان")]
End,
[Display(Name = "انصراف")]
optout,
}
}