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

9
backend/Models/Item.cs Normal file
View file

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