Files
tbd-station-14/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs
Errant 40b9fd4ea3 Namespace cleanup around Mind Roles (#30965)
* namespaces

* Comment does not need a semicolon

---------

Co-authored-by: Vasilis <vascreeper@yahoo.com>
2024-08-15 20:26:57 +02: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;
}