15 lines
427 B
C#
15 lines
427 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Web.Models.ContentEditing
|
|
{
|
|
/// <summary>
|
|
/// A model representing a content item to be displayed in the back office
|
|
/// </summary>
|
|
[DataContract(Name = "content", Namespace = "")]
|
|
public class MediaItemDisplay : ContentItemDisplayBase<ContentPropertyDisplay, IMedia>
|
|
{
|
|
|
|
}
|
|
} |