Class ClassMetadata
Represents metadata information for a class, including its name, display order, and associated color.
Inherited Members
Namespace: RedMist.TimingCommon.Models.Configuration
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class ClassMetadata
Constructors
View SourceClassMetadata()
Declaration
public ClassMetadata()
Properties
View SourceColorHex
Gets or sets the color value as a hexadecimal string to show in the class marker.
Declaration
[Key(2)]
public string ColorHex { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Class name, such as GTO.
Declaration
[Key(0)]
[StringLength(40, MinimumLength = 1)]
[Required]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Order
Display order in the UI when in grouped mode.
Declaration
[Key(1)]
public int Order { get; set; }
Property Value
| Type | Description |
|---|---|
| int |