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