update api

This commit is contained in:
Stanley Dimant
2022-09-29 15:57:16 +02:00
parent 57a7ab8262
commit 008f886743
2 changed files with 8 additions and 8 deletions

View File

@@ -3,10 +3,10 @@
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 string? OwnedBy { get; set; }
public bool? InvitesEnabled { get; set; }
public bool? IsPaused { get; set; }
public bool? IsDeleted { get; set; }
public string? Alias { get; set; }
}
}

View File

@@ -4,8 +4,8 @@
{
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; }
public string? UserAlias { get; set; }
public bool? IsPaused { get; set; }
public bool? IsRemoved { get; set; }
}
}