29 lines
720 B
C#
29 lines
720 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Umbraco.Web.Models.ContentEditing
|
|
{
|
|
[DataContract(Name = "control", Namespace = "")]
|
|
public class DashboardControl
|
|
{
|
|
[DataMember(Name = "showOnce")]
|
|
public bool ShowOnce { get; set; }
|
|
|
|
[DataMember(Name = "addPanel")]
|
|
public bool AddPanel { get; set; }
|
|
|
|
[DataMember(Name = "serverSide")]
|
|
public bool ServerSide { get; set; }
|
|
|
|
[DataMember(Name = "path")]
|
|
public string Path { get; set; }
|
|
|
|
[DataMember(Name = "caption")]
|
|
public string Caption { get; set; }
|
|
}
|
|
}
|