2021-02-12 04:35:56 +01:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
2024-08-15 20:26:57 +02:00
|
|
|
namespace Content.Shared.Ghost.Roles;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class GhostRole
|
2021-02-12 04:35:56 +01:00
|
|
|
{
|
2024-08-15 20:26:57 +02:00
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
public NetEntity Id;
|
2021-02-12 04:35:56 +01:00
|
|
|
}
|