2011-01-27 21:38:06 -13:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace umbraco.MacroEngines
|
|
|
|
|
|
{
|
2011-06-11 22:15:01 -02:00
|
|
|
|
//for backwards compatibility only
|
|
|
|
|
|
public class DynamicMedia : DynamicNode
|
2011-01-27 21:38:06 -13:00
|
|
|
|
{
|
2011-07-11 11:27:31 -12:00
|
|
|
|
public DynamicMedia(DynamicBackingItem item) : base(item) { }
|
2011-01-27 21:38:06 -13:00
|
|
|
|
}
|
|
|
|
|
|
}
|