Fixes label ui issue on template editor ui.

Updated notification settings ui to use angular instead of web forms.
This commit is contained in:
Mike
2018-08-06 19:52:29 +01:00
parent 5e9f73b114
commit 2b6c6b3022
18 changed files with 205 additions and 222 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
[DataContract(Name = "notifySetting", Namespace = "")]
public class NotifySetting : ICloneable
{
[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; }
public object Clone()
{
return this.MemberwiseClone();
}
}
}