# Class SubjectRecord Namespace: [Aeon.Environment](Aeon.Environment.md) Assembly: Aeon.Environment.dll ```csharp public class SubjectRecord ``` #### Inheritance [object](https://learn.microsoft.com/dotnet/api/system.object) ← [SubjectRecord](Aeon.Environment.SubjectRecord.md) #### Inherited Members [object.ToString\(\)](https://learn.microsoft.com/dotnet/api/system.object.tostring), [object.Equals\(object\)](https://learn.microsoft.com/dotnet/api/system.object.equals\#system\-object\-equals\(system\-object\)), [object.Equals\(object, object\)](https://learn.microsoft.com/dotnet/api/system.object.equals\#system\-object\-equals\(system\-object\-system\-object\)), [object.ReferenceEquals\(object, object\)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.GetHashCode\(\)](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType\(\)](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone\(\)](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone) ## Properties ### Available ```csharp [Column("available")] public bool Available { get; set; } ``` #### Property Value [bool](https://learn.microsoft.com/dotnet/api/system.boolean) ### BirthDate ```csharp [Column("subject_birth_date")] public DateTime? BirthDate { get; set; } ``` #### Property Value [DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)? ### Description ```csharp [Column("subject_description")] public string Description { get; set; } ``` #### Property Value [string](https://learn.microsoft.com/dotnet/api/system.string) ### Id ```csharp [Column("subject")] public string Id { get; set; } ``` #### Property Value [string](https://learn.microsoft.com/dotnet/api/system.string) ### LabId ```csharp [Column("lab_id")] public string LabId { get; set; } ``` #### Property Value [string](https://learn.microsoft.com/dotnet/api/system.string) ### Sex ```csharp [Column("sex")] public SubjectSex Sex { get; set; } ``` #### Property Value [SubjectSex](Aeon.Environment.SubjectSex.md) ## Methods ### ToString\(\) Returns a string that represents the current object. ```csharp public override string ToString() ``` #### Returns [string](https://learn.microsoft.com/dotnet/api/system.string) A string that represents the current object.