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 StatusOrder
|
|
|
|
|
{
|
|
|
|
|
[Display(Name = "ساخته شده")]
|
2024-07-25 17:18:03 +03:30
|
|
|
|
Create=1,
|
2024-03-30 15:10:36 +03:30
|
|
|
|
[Display(Name = "پرداخت شده")]
|
2024-07-25 17:18:03 +03:30
|
|
|
|
Paid=2,
|
2024-03-30 15:10:36 +03:30
|
|
|
|
[Display(Name = "انصراف داده شده")]
|
2024-07-25 17:18:03 +03:30
|
|
|
|
Cancel=3
|
2024-03-30 15:10:36 +03:30
|
|
|
|
}
|
|
|
|
|
}
|