Table of Contents

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

DateTimeOffset?

FirstName

Gets or sets the first name of the person.

string? FirstName { get; set; }

Property Value

string

Gender

Gets or sets the gender of the person.

Gender? Gender { get; set; }

Property Value

Gender?

LastName

Gets or sets the last name of the person.

string? LastName { get; set; }

Property Value

string

MiddleName

Gets or sets the middle name of the person.

string? MiddleName { get; set; }

Property Value

string