15 lines
326 B
C#
15 lines
326 B
C#
namespace adas_core.Domain.Enums;
|
|
|
|
/// <summary>
|
|
/// Provides a static container for patient-related enumeration values or constants used throughout the application.
|
|
/// </summary>
|
|
public static class PatientEnum
|
|
{
|
|
public enum Gender
|
|
{
|
|
Male,
|
|
Female,
|
|
Undifferentiated,
|
|
Unknown
|
|
}
|
|
} |