Fix up a few types and comments

This commit is contained in:
CWX
2025-01-06 23:58:18 +00:00
parent 782f95528d
commit aef23c9ce1
2 changed files with 46 additions and 44 deletions
@@ -8,5 +8,5 @@ public class GetSuitsResponse
public string Id { get; set; }
[JsonPropertyName("suites")]
public string[] Suites { get; set; }
public List<string> Suites { get; set; }
}
@@ -12,10 +12,12 @@ public class ItemEventRouterBase
public List<Warning> Warnings { get; set; }
[JsonPropertyName("profileChanges")]
public object ProfileChanges { get; set; } // Note: using object to accommodate string or TProfileChanges
public object ProfileChanges { get; set; } // TODO: Types given TProfileChanges | ""
}
public class TProfileChanges : Dictionary<string, ProfileChange> { }
public class TProfileChanges : Dictionary<string, ProfileChange>
{
}
public class Warning
{