23 lines
641 B
C#
23 lines
641 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|