Files
ClubPenguinApi/MareSynchronosAPI/GroupDto.cs
Stanley Dimant 008f886743 update api
2022-09-29 15:57:16 +02:00

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