Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/PropertyEditorBasic.cs

18 lines
507 B
C#
Raw Normal View History

2013-09-02 15:40:14 +02:00
using System;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// Defines an available property editor to be able to select for a data type
/// </summary>
[DataContract(Name = "propertyEditor", Namespace = "")]
public class PropertyEditorBasic
{
[DataMember(Name = "editorId")]
public Guid EditorId { get; set; }
[DataMember(Name = "name")]
public string Name { get; set; }
}
}