mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 16:47:22 +01:00
9 lines
No EOL
252 B
C#
9 lines
No EOL
252 B
C#
namespace MareSynchronosServer.Utils;
|
|
|
|
public record PauseState
|
|
{
|
|
public string GID { get; set; }
|
|
public bool IsPaused => IsSelfPaused || IsOtherPaused;
|
|
public bool IsSelfPaused { get; set; }
|
|
public bool IsOtherPaused { get; set; }
|
|
} |