NameValuePair

interface NameValuePair {
    Name?: null | string;
    Value?: null | string;
}

Properties

Properties

Name?: null | string

Gets or sets the name.

NameValuePair

Value?: null | string

Gets or sets the value.

NameValuePair