Implements doc type collections

This commit is contained in:
Niels Hartvig
2018-04-30 09:13:34 +02:00
parent 1a99d0e4d0
commit 9ffca1bcab
6 changed files with 160 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Umbraco.Web.Models.ContentEditing
{
public class DocumentTypeCollectionDisplay
{
public int CollectionId { get; set; }
public int ItemId { get; set; }
}
}