11 lines
207 B
C#
11 lines
207 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace MobApp.Models
|
|||
|
{
|
|||
|
public class Item
|
|||
|
{
|
|||
|
public string Id { get; set; }
|
|||
|
public string Text { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
}
|
|||
|
}
|