Files
moadiran/Shared/Enums/CustomerType.cs

18 lines
417 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 CustomerType:int
{
[Display(Name = "حقیقی")]
genuine = 1,
[Display(Name = "حقوقی")]
legal = 2,
[Display(Name = "مشارکت مدنی")]
CivilPartnership = 3,
[Display(Name = "اتباع عیر ایرانی")]
NonIranianNationals = 4
}
}