1
0
mirror of https://github.com/tomasvarg/OwinWebApiTest.git synced 2026-03-01 08:28:49 +00:00
OwinWebApiTest/OwinWebApiTest/Models/Item.cs

14 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OwinWebApiTest.Models
{
public class Item
{
public int id { get; set; }
public string name { get; set; }
public string type { get; set; }
}
}