From 008f88674347b5230b860366017eb3ec157b2090 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Thu, 29 Sep 2022 15:57:16 +0200 Subject: [PATCH] update api --- MareSynchronosAPI/GroupDto.cs | 10 +++++----- MareSynchronosAPI/GroupPairDto.cs | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MareSynchronosAPI/GroupDto.cs b/MareSynchronosAPI/GroupDto.cs index 967a29f..c5733e6 100644 --- a/MareSynchronosAPI/GroupDto.cs +++ b/MareSynchronosAPI/GroupDto.cs @@ -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; } } } diff --git a/MareSynchronosAPI/GroupPairDto.cs b/MareSynchronosAPI/GroupPairDto.cs index 632d545..1c832c4 100644 --- a/MareSynchronosAPI/GroupPairDto.cs +++ b/MareSynchronosAPI/GroupPairDto.cs @@ -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; } } } \ No newline at end of file