Files
Orchard/src/Orchard.Web/Packages/Orchard.DevTools/ViewModels/ContentIndexViewModel.cs
loudej c08d3813da Changing Orchard.Models namespace to Orchard.ContentManagement
--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4044408
2009-12-21 20:29:53 +00:00

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; }
}
}