Files
moadiran/Shared/Enums/CustomerType.cs
2024-05-01 15:42:21 +03:30

18 lines
417 B
C#

using System.ComponentModel.DataAnnotations;
namespace Shared.DTOs
{
public enum CustomerType:int
{
[Display(Name = "حقیقی")]
genuine = 1,
[Display(Name = "حقوقی")]
legal = 2,
[Display(Name = "مشارکت مدنی")]
CivilPartnership = 3,
[Display(Name = "اتباع عیر ایرانی")]
NonIranianNationals = 4
}
}