Files
Umbraco-CMS/src/Umbraco.Core/Models/Section.cs
2018-10-09 23:02:22 +02:00

23 lines
510 B
C#

namespace Umbraco.Core.Models
{
/// <summary>
/// Represents a section defined in the app.config file.
/// </summary>
public class Section
{
public Section(string name, string @alias, int sortOrder)
{
Name = name;
Alias = alias;
SortOrder = sortOrder;
}
public Section()
{ }
public string Name { get; set; }
public string Alias { get; set; }
public int SortOrder { get; set; }
}
}