SelectType parsed/serialized as Enum.

This commit is contained in:
Ottermandias 2021-01-25 23:49:45 +01:00
parent 06b0fb7e0c
commit 5462bb6f05

View file

@ -27,6 +27,7 @@ namespace Penumbra.Models
public struct InstallerInfo { public struct InstallerInfo {
public string GroupName; public string GroupName;
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public SelectType SelectionType; public SelectType SelectionType;
public List<Option> Options; public List<Option> Options;
} }