10 lines
262 B
C#
10 lines
262 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public class ClientPairDto
|
|
{
|
|
public string OtherUID { get; set; }
|
|
public bool IsPaused { get; set; }
|
|
public bool IsSynced { get; set; }
|
|
public bool IsPausedFromOthers { get; set; }
|
|
}
|
|
} |