9 lines
No EOL
186 B
C#
9 lines
No EOL
186 B
C#
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; }
|
|
} |