update api for groups

This commit is contained in:
Stanley Dimant
2022-09-29 15:33:46 +02:00
parent 9dc1e901aa
commit 57a7ab8262
4 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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; }
}
}