13 lines
408 B
C#
13 lines
408 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public record ClientPairDto
|
|
{
|
|
public string OtherUID { get; set; }
|
|
public string VanityUID { 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; }
|
|
}
|
|
} |