Added events.Service and xmlhelper.service

This commit is contained in:
perploug
2013-08-12 15:06:12 +02:00
committed by Per Ploug Krogslund
parent 3e3f12bf63
commit e825c08901
982 changed files with 162678 additions and 162678 deletions

View File

@@ -1,26 +1,26 @@
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()
{
}
public string Name { get; set; }
public string Alias { get; set; }
public string Icon { get; set; }
public int SortOrder { get; set; }
}
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()
{
}
public string Name { get; set; }
public string Alias { get; set; }
public string Icon { get; set; }
public int SortOrder { get; set; }
}
}