Make CategoryName nullable

This commit is contained in:
Timothy Baldridge 2022-01-20 07:50:53 -07:00
parent 035b8e7aa7
commit e24200b873

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; } = "";
[JsonPropertyName("is_primary")] public bool IsPrimary { get; set; }