Files
Umbraco-CMS/src/Umbraco.Core/Models/MacroPropertyCollection.cs

20 lines
430 B
C#
Raw Normal View History

using System;
using System.Collections.ObjectModel;
using System.Collections.Generic;
using System.Linq;
namespace Umbraco.Core.Models
{
/// <summary>
/// A macro's property collection
/// </summary>
internal class MacroPropertyCollection : ObservableDictionary<string, IMacroProperty>
{
public MacroPropertyCollection()
: base(property => property.Alias)
{
}
}
}