Files
ClubPenguinApi/MareSynchronosAPI/GroupDto.cs
2022-09-29 15:33:46 +02:00

13 lines
337 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; }
}
}