Api-PWA/DocuMed.Domain/Enums/Gender.cs

9 lines
139 B
C#
Raw Permalink Normal View History

2023-10-10 17:02:38 +03:30
namespace DocuMed.Domain.Enums;
public enum Gender
{
[Display(Name = "مرد")]
Male,
[Display(Name = "زن")]
Female
}