mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
13 lines
309 B
C#
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 EntityUid Id;
|
|
}
|
|
}
|