2013-08-12 15:06:12 +02:00
|
|
|
|
namespace Umbraco.Core.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents a section defined in the app.config file
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class Section
|
|
|
|
|
|
{
|
|
|
|
|
|
public Section(string name, string @alias, string icon, int sortOrder)
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = name;
|
|
|
|
|
|
Alias = alias;
|
|
|
|
|
|
Icon = icon;
|
|
|
|
|
|
SortOrder = sortOrder;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Section()
|
|
|
|
|
|
{
|
2017-07-20 11:21:28 +02:00
|
|
|
|
|
2013-08-12 15:06:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Alias { get; set; }
|
|
|
|
|
|
public string Icon { get; set; }
|
|
|
|
|
|
public int SortOrder { get; set; }
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|