Merge branch 'temp8' into temp-editing-all-variants

This commit is contained in:
Robert
2018-08-08 13:46:19 +02:00
committed by GitHub
124 changed files with 706 additions and 9193 deletions

View File

@@ -0,0 +1,19 @@
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
[DataContract(Name = "notifySetting", Namespace = "")]
public class NotifySetting
{
[DataMember(Name = "name")]
public string Name { get; set; }
[DataMember(Name = "checked")]
public bool Checked { get; set; }
/// <summary>
/// The letter from the IAction
/// </summary>
[DataMember(Name = "notifyCode")]
public string NotifyCode { get; set; }
}
}