mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-24 05:23:33 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4044408
15 lines
438 B
C#
15 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Orchard.ContentManagement;
|
|
using Orchard.ContentManagement.Records;
|
|
using Orchard.Mvc.ViewModels;
|
|
|
|
namespace Orchard.DevTools.ViewModels {
|
|
public class ContentIndexViewModel : BaseViewModel {
|
|
public IEnumerable<ContentTypeRecord> Types { get; set; }
|
|
public IEnumerable<ContentItem> Items { get; set; }
|
|
}
|
|
}
|