2022-05-13 00:59:03 -07:00
|
|
|
|
using Robust.Shared.Network;
|
2021-11-10 13:26:25 +01:00
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Administration
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2022-07-10 18:36:53 -07:00
|
|
|
|
public record PlayerInfo(string Username, string CharacterName, string IdentityName, string StartingJob, bool Antag, EntityUid EntityUid, NetUserId SessionId, bool Connected);
|
2021-11-10 13:26:25 +01:00
|
|
|
|
}
|