11 lines
212 B
C#
11 lines
212 B
C#
using System;
|
|
|
|
namespace MyMobileApp.Models
|
|
{
|
|
public class Item
|
|
{
|
|
public string Id { get; set; }
|
|
public string Text { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
} |