Files
tbd-station-14/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs
2023-09-11 09:42:41 +10:00

13 lines
309 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;
}
}