Fix model path in database context.

This commit is contained in:
2024-05-04 02:27:21 +01:00
parent 67cde54e37
commit 2e588b8de0
23 changed files with 447 additions and 447 deletions

View File

@@ -34,7 +34,7 @@ namespace Aaru.Server.Database.Models;
public class MediaItem
{
public string Type { get; set; }
public string SubType { get; set; }
public long Count { get; set; }
public string Type { get; set; }
public string? SubType { get; set; }
public long Count { get; set; }
}