PdaBorderColorComponent.cs 418 B

12345678910111213141516171819
  1. namespace Content.Client.PDA;
  2. /// <summary>
  3. /// Used for specifying the pda windows border colors
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class PdaBorderColorComponent : Component
  7. {
  8. [DataField("borderColor", required: true)]
  9. public string? BorderColor;
  10. [DataField("accentHColor")]
  11. public string? AccentHColor;
  12. [DataField("accentVColor")]
  13. public string? AccentVColor;
  14. }