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,11 @@
namespace MareSynchronos.API
{
public record GroupPairDto
{
public string GroupGID { get; set; }
public string UserUID { get; set; }
public string UserAlias { get; set; }
public bool IsPaused { get; set; }
public bool IsRemoved { get; set; }
}
}