mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-13 15:14:15 +01:00
12 lines
No EOL
362 B
C#
12 lines
No EOL
362 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public record ClientPairDto
|
|
{
|
|
public string OtherUID { get; set; }
|
|
public bool IsPaused { get; set; }
|
|
public bool IsSynced { get; set; }
|
|
public bool IsPausedFromOthers { get; set; }
|
|
public bool IsRemoved { get; set; }
|
|
public bool AllowReceiveMessages { get; set; }
|
|
}
|
|
} |