13 lines
394 B
C#
13 lines
394 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public record GroupPairDto
|
|
{
|
|
public string GroupGID { get; set; }
|
|
public string UserUID { get; set; }
|
|
public string? UserAlias { get; set; }
|
|
public bool? IsPaused { get; set; }
|
|
public bool? IsRemoved { get; set; }
|
|
public bool? IsPinned { get; set; }
|
|
public bool? IsModerator { get; set; }
|
|
}
|
|
} |