Table of Contents

Interface IToken

Namespace
Shift.Common
Assembly
Shift.Common.dll
public interface IToken
Extension Methods

Properties

Code

Gets an alphanumeric code for the object. Uniqueness is not guaranteed.

string Code { get; }

Property Value

string

Identifier

Gets a globally unique identifier for the object.

Guid Identifier { get; }

Property Value

Guid

Key

Gets a unique integer value for the object. Values are not intended for use outside the system.

int Key { get; }

Property Value

int

Name

Gets a name for the object. This is most often used for office/filing purposes.

string Name { get; }

Property Value

string

Number

Gets a unique integer value for the object. Values can be used outside the system.

int Number { get; }

Property Value

int

Subtype

Gets the subtype of the object (if applicable).

string Subtype { get; }

Property Value

string

Title

Gets a display title for the object. This is most often used for publication purposes.

string Title { get; }

Property Value

string

Type

Gets the type of the object.

string Type { get; }

Property Value

string