Files
ClubPenguinApi/MareSynchronosAPI/GroupDto.cs
2022-10-06 16:06:23 +02:00

14 lines
389 B
C#

namespace MareSynchronos.API
{
public record GroupDto
{
public string GID { get; set; }
public string? OwnedBy { get; set; }
public bool? InvitesEnabled { get; set; }
public bool? IsPaused { get; set; }
public bool? IsDeleted { get; set; }
public string? Alias { get; set; }
public bool? IsModerator { get; set; }
}
}