Skip to content

Commit

Permalink
Comment out plugin params since those can't be deserialized as is
Browse files Browse the repository at this point in the history
  • Loading branch information
Guerra24 committed Nov 16, 2024
1 parent 1089386 commit b431fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LRReader.Shared/Models/Main/Plugins.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Plugin
public string name { get; set; } = null!;
public string @namespace { get; set; } = null!;
public string oneshot_arg { get; set; } = null!;
public List<PluginParameter> parameters { get; set; } = null!;
//public List<PluginParameter> parameters { get; set; } = null!;
[JsonConverter(typeof(StringEnumConverter))]
public PluginType type { get; set; }
public string version { get; set; } = null!;
Expand Down

0 comments on commit b431fdb

Please sign in to comment.