2022-10-16 10:26:29 +13:00
|
|
|
using Robust.Shared.Network;
|
2021-11-10 13:26:25 +01:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Administration
|
|
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
2022-10-16 10:26:29 +13:00
|
|
|
public record PlayerInfo(
|
|
|
|
|
string Username,
|
|
|
|
|
string CharacterName,
|
|
|
|
|
string IdentityName,
|
|
|
|
|
string StartingJob,
|
|
|
|
|
bool Antag,
|
|
|
|
|
EntityUid? EntityUid,
|
|
|
|
|
NetUserId SessionId,
|
|
|
|
|
bool Connected,
|
2023-04-12 19:43:33 +10:00
|
|
|
bool ActiveThisRound);
|
2021-11-10 13:26:25 +01:00
|
|
|
}
|