Files
crystall-punk-14/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs

12 lines
279 B
C#
Raw Permalink Normal View History

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;
}