Have the macro repository working, just need to write more unit tests regarding macro properties.

This commit is contained in:
Shannon
2013-09-17 17:18:54 +10:00
parent 44d01e3868
commit f2f8004599
17 changed files with 978 additions and 121 deletions

View File

@@ -0,0 +1,20 @@
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)
{
}
}
}