.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -9,11 +9,7 @@ public record CustomizationSetRequest : InventoryBaseActionRequestData
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("customizations")]
public List<CustomizationSetOption>? Customizations
{
get;
set;
}
public List<CustomizationSetOption>? Customizations { get; set; }
}
public record CustomizationSetOption
@@ -22,23 +18,11 @@ public record CustomizationSetOption
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("id")]
public string? Id
{
get;
set;
}
public string? Id { get; set; }
[JsonPropertyName("type")]
public string? Type
{
get;
set;
}
public string? Type { get; set; }
[JsonPropertyName("source")]
public string? Source
{
get;
set;
}
public string? Source { get; set; }
}