mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Make SizeInBytes nilable
This commit is contained in:
parent
bb3b374375
commit
9ba58e6851
@ -39,7 +39,7 @@ public class ModFile
|
||||
|
||||
[JsonPropertyName("size_kb")] public int SizeKb { get; set; }
|
||||
|
||||
[JsonPropertyName("size_in_bytes")] public int SizeInBytes { get; set; }
|
||||
[JsonPropertyName("size_in_bytes")] public int? SizeInBytes { get; set; }
|
||||
|
||||
[JsonPropertyName("changelog_html")] public string ChangelogHtml { get; set; } = "";
|
||||
|
||||
@ -50,4 +50,4 @@ public class ModFile
|
||||
public class ModFiles
|
||||
{
|
||||
[JsonPropertyName("files")] public ModFile[] Files { get; set; } = Array.Empty<ModFile>();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user