9 lines
142 B
C#
9 lines
142 B
C#
|
|
namespace Netina.Domain.Enums;
|
|||
|
|
|
|||
|
|
public enum Gender
|
|||
|
|
{
|
|||
|
|
[Display(Name = "مرد")]
|
|||
|
|
Male,
|
|||
|
|
[Display(Name = "بانو")]
|
|||
|
|
Female
|
|||
|
|
}
|