14 lines
389 B
C#
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; }
|
|
}
|
|
}
|