Interface IPerson
- Namespace
- XENBIT.ResQueServe.Abstractions.Interfaces
- Assembly
- RQS.Abstractions.dll
Represents a person with optional first, middle, and last names, gender, and date of birth.
public interface IPerson
Properties
DateOfBirth
Gets or sets the date of birth of the person.
DateTimeOffset? DateOfBirth { get; set; }
Property Value
FirstName
Gets or sets the first name of the person.
string? FirstName { get; set; }
Property Value
Gender
Gets or sets the gender of the person.
Gender? Gender { get; set; }
Property Value
LastName
Gets or sets the last name of the person.
string? LastName { get; set; }
Property Value
MiddleName
Gets or sets the middle name of the person.
string? MiddleName { get; set; }