12 lines
209 B
C#
12 lines
209 B
C#
using System;
|
|
|
|
namespace Gallery.Models
|
|
{
|
|
public class Item
|
|
{
|
|
public string Id { get; set; }
|
|
public string Text { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|