Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/ContentItemDto.cs

14 lines
446 B
C#

using Newtonsoft.Json;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// Represents a content item from the database including all of the required data that we need to work with such as data type data
/// </summary>
internal class ContentItemDto<TPersisted> : ContentItemBasic<ContentPropertyDto, TPersisted>
where TPersisted : IContentBase
{
}
}