Fix up a few types and comments
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user