From 94dc07d1c53a5f9c16de91e9b39cc56bb6ec90a6 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Thu, 29 Sep 2022 20:55:12 +0200 Subject: [PATCH] add alias to dto --- MareSynchronosAPI/ConnectionDto.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MareSynchronosAPI/ConnectionDto.cs b/MareSynchronosAPI/ConnectionDto.cs index 0c8b15c..b9d3f38 100644 --- a/MareSynchronosAPI/ConnectionDto.cs +++ b/MareSynchronosAPI/ConnectionDto.cs @@ -5,6 +5,7 @@ public int ServerVersion { get; set; } public bool IsAdmin { get; set; } public bool IsModerator { get; set; } + public string Alias { get; set; } public string UID { get; set; } } }