Forgot to default to null

This commit is contained in:
Timothy Baldridge 2022-01-20 07:57:25 -07:00
parent e24200b873
commit 1efa5c3a04

View File

@ -17,7 +17,7 @@ public class ModFile
[JsonPropertyName("category_id")] public int CategoryId { get; set; }
[JsonPropertyName("category_name")] public string? CategoryName { get; set; } = "";
[JsonPropertyName("category_name")] public string? CategoryName { get; set; } = null;
[JsonPropertyName("is_primary")] public bool IsPrimary { get; set; }