Files
ClubPenguinApi/MareSynchronosAPI/GroupPairDto.cs
Stanley Dimant 90bb5be899 add pinned to api
2022-10-02 13:01:09 +02:00

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