Class Rank
The information about a rank.
Inheritance
System.Object
Rank
Namespace: DirectScale.Disco.Extension
Assembly: DirectScale.Disco.Extension.Abstractions.dll
Syntax
public class Rank : Object
Remarks
Each rank consists of two parts, and numerical representation (Id) and a text representation. For example, Rank Id 50 might be named "Ruby" and Rank Id 60 might be named "Diamond"
Constructors
Rank()
Declaration
public Rank()
Properties
Id
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The numerical id number for this rank. |
Remarks
This number is how we key the ranks and determine the correct ordering of ranks (Higher number = higher rank).
Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text description for this rank. |