Files
ClubPenguinApi/MareSynchronosAPI/ClientPairDto.cs
Stanley Dimant af8516d44a add API solution
2022-07-17 00:04:20 +02:00

12 lines
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; }
}
}