using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models.ContentEditing
{
///
/// Used to map property values when saving content/media/members
///
///
/// This is only used during mapping operations, it is not used for angular purposes
///
internal class ContentPropertyCollectionDto : IContentProperties
{
public ContentPropertyCollectionDto()
{
Properties = Enumerable.Empty();
}
public IEnumerable Properties { get; set; }
}
}