We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5fa282 commit 8e56ebaCopy full SHA for 8e56eba
Journal-Limpet/Jobs/CanonnRDUserUploader.cs
@@ -444,7 +444,9 @@ public class CanonnEvent
444
[JsonPropertyName("description")]
445
public string Description { get; set; }
446
[JsonPropertyName("definition")]
447
- public CanonnEventDefinition Definition { get; set; }
+ public string DefinitionJson { get; set; }
448
+ [JsonIgnore]
449
+ public CanonnEventDefinition Definition { get { return JsonSerializer.Deserialize<CanonnEventDefinition>(DefinitionJson); } }
450
}
451
452
public class CanonnEventDefinition : EliteBaseJsonObject
0 commit comments