Working search

This commit is contained in:
Fishandchips321 2026-02-22 21:58:23 +00:00
parent 271cf1f407
commit 2a572e8bc4
15 changed files with 217 additions and 39 deletions

View file

@ -16,6 +16,7 @@ public class ItemDTO
Index = item.IndexNumber;
ParentId = item.ParentId;
ThumbnailUrl = $"{this.ServerUrl}/Items/{ID}/Images/Primary";
ProductionYear = item.ProductionYear.ToString();
}
public string ID { get; set; } = string.Empty;
@ -26,4 +27,5 @@ public class ItemDTO
public int? Index { get; set; }
public string? ParentId { get; set; }
public string? ThumbnailUrl { get; set; }
public string? ProductionYear { get; set; }
}