2013-08-16 13:13:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Models.ContentEditing
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataContract(Name = "entity", Namespace = "")]
|
2013-08-19 16:49:07 +10:00
|
|
|
|
public class EntityBasic
|
2013-08-16 13:13:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
[DataMember(Name = "name")]
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember(Name = "id")]
|
|
|
|
|
|
public int Id { get; set; }
|
2013-08-19 16:49:07 +10:00
|
|
|
|
|
2013-08-16 13:13:46 +02:00
|
|
|
|
[DataMember(Name = "icon")]
|
|
|
|
|
|
public string Icon { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|