add missing Props to Mastering

This commit is contained in:
CWX
2025-02-01 18:05:43 +00:00
parent ecf9540514
commit b6ede36b91
@@ -1291,11 +1291,17 @@ public record Class
public record Mastering
{
[JsonPropertyName("Id")]
public string? Id { get; set; }
[JsonPropertyName("Name")]
public string? Name { get; set; }
[JsonPropertyName("Templates")]
public List<string>? Templates { get; set; }
[JsonPropertyName("Progress")]
public double? Progress { get; set; }
// Checked in client
[JsonPropertyName("Level2")]