Initial backend draft
This commit is contained in:
parent
b6293beeec
commit
84ad96d628
18 changed files with 148 additions and 0 deletions
9
backend/Models/Item.cs
Normal file
9
backend/Models/Item.cs
Normal 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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue