| 12345678910111213141516171819 |
- namespace Content.Client.PDA;
- /// <summary>
- /// Used for specifying the pda windows border colors
- /// </summary>
- [RegisterComponent]
- public sealed partial class PdaBorderColorComponent : Component
- {
- [DataField("borderColor", required: true)]
- public string? BorderColor;
- [DataField("accentHColor")]
- public string? AccentHColor;
- [DataField("accentVColor")]
- public string? AccentVColor;
- }
|