Files
moadiran/Shared/Enums/InvoiceType.cs

26 lines
628 B
C#
Raw 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 InvoiceType:int
{
[Display(Name = "پیشنهاد قیمت")]
Bidding=10,
//[Display(Name = "فاکتور")]
//Factor=11,
//[Display(Name = "قطعی")]
//Final=12,
2024-05-30 15:08:36 +03:30
//[Display(Name = "لغو")]
//CANCEL = 0,
2024-03-30 15:10:36 +03:30
[Display(Name = "فروش")]
Sale=1,
[Display(Name = "ابطالی")]
Cancellation=3,
[Display(Name = "اصلاحی")]
Repair=2,
[Display(Name = "برگشت از فروش")]
BackFrmSale = 4
}
}