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

21 lines
556 B
C#
Raw Normal View History

using System.Runtime.Serialization;
2018-06-29 19:52:40 +02:00
namespace Umbraco.Cms.Core.Models.ContentEditing
2018-06-29 19:52:40 +02:00
{
/// <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 = "alias")]
public string Alias { get; set; }
[DataMember(Name = "name")]
public string Name { get; set; }
[DataMember(Name = "icon")]
public string Icon { get; set; }
}
}