6
StarHorizon_Public/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs
2026-01-24 12:49:55 +03:00

12 lines
279 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Ghost.Roles;
[Serializable, NetSerializable]
public sealed class GhostRole
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public NetEntity Id;
}