2025-01-04 23:04:38 +03:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._White.Administration;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class HoursPanelMessageToServer : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public string PlayerCKey { get; }
|
|
|
|
|
public string Job { get; }
|
|
|
|
|
public HoursPanelMessageToServer(string playerCKey, string job)
|
|
|
|
|
{
|
|
|
|
|
PlayerCKey = playerCKey;
|
|
|
|
|
Job = job;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-07 18:27:35 +03:00
|
|
|
[Serializable, NetSerializable]
|
2025-01-04 23:04:38 +03:00
|
|
|
public sealed class HoursPanelMessageToClient : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public TimeSpan Time { get; }
|
|
|
|
|
public HoursPanelMessageToClient(TimeSpan time)
|
|
|
|
|
{
|
|
|
|
|
Time = time;
|
|
|
|
|
}
|
|
|
|
|
}
|