Fixes: #U4-2094 - issue with duplicates in getting Descendants for media in mvc.

This commit is contained in:
Shannon Deminick
2013-05-07 18:56:24 -10:00
parent c4a071523e
commit c52669fb05
6 changed files with 60 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Dynamic;
using System.Linq;
using System.Web;
@@ -20,6 +21,7 @@ namespace Umbraco.Web.Models
/// <summary>
/// The base dynamic model for views
/// </summary>
[DebuggerDisplay("Content Id: {Id}, Name: {Name}")]
public class DynamicPublishedContent : DynamicObject, IPublishedContent, IOwnerCollectionAware<IPublishedContent>
{
protected internal IPublishedContent PublishedContent { get; private set; }