From e85d97f6ece378e85874fc323ab7c616f413daf0 Mon Sep 17 00:00:00 2001 From: Ivar Nesje Date: Thu, 12 Oct 2023 09:22:44 +0200 Subject: [PATCH] Fix wrong JsonPropertyName --- src/Models/Authorization/Role.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Models/Authorization/Role.cs b/src/Models/Authorization/Role.cs index a120f821..17acdf07 100644 --- a/src/Models/Authorization/Role.cs +++ b/src/Models/Authorization/Role.cs @@ -13,7 +13,7 @@ public class Role /// Gets or sets the role type /// [JsonProperty] - [JsonPropertyName("value")] + [JsonPropertyName("type")] public string Type { get; set; } ///