NameIdPair

interface NameIdPair {
    Id?: null | string;
    Name?: null | string;
}

Properties

Properties

Id?: null | string

Gets or sets the identifier.

NameIdPair

Name?: null | string

Gets or sets the name.

NameIdPair