initial commit

This commit is contained in:
2021-08-05 16:19:53 +08:00
commit 569c0a733f
71 changed files with 2111 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using System;
namespace Gallery.Models
{
public class Item
{
public string Id { get; set; }
public string Text { get; set; }
public string Description { get; set; }
}
}