Fixes up the Image cropper extensions, ensures that we don't recursively call Url (this is a special property).

This commit is contained in:
Shannon
2014-03-20 14:57:48 +11:00
parent 863667f5bd
commit 3710c0916c
9 changed files with 176 additions and 144 deletions

View File

@@ -0,0 +1,14 @@
using System.Runtime.Serialization;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// A model representing a media item to be saved
/// </summary>
[DataContract(Name = "content", Namespace = "")]
public class MediaItemSave : ContentBaseItemSave<IMedia>
{
}
}