mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
* namespaces * Comment does not need a semicolon --------- Co-authored-by: Vasilis <vascreeper@yahoo.com> (cherry picked from commit 40b9fd4ea3b1e06558d8e510c527169965193ccc)
12 lines
279 B
C#
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;
|
|
}
|