Initial backend draft

This commit is contained in:
Fishandchips321 2025-12-22 18:45:15 +00:00
parent b6293beeec
commit 84ad96d628
18 changed files with 148 additions and 0 deletions

View file

@ -0,0 +1,8 @@
namespace JellyGlass.Models;
public class Library
{
public string ID { get; set; }
public string Name { get; set; }
public Uri ThumbnailUrl { get; set; }
}