SharedGhostRoleSystem.cs 279 B

1234567891011
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Ghost.Roles;
  3. [Serializable, NetSerializable]
  4. public sealed class GhostRole
  5. {
  6. public string Name { get; set; } = string.Empty;
  7. public string Description { get; set; } = string.Empty;
  8. public NetEntity Id;
  9. }