Files
Orchard/src/Orchard.Web/Modules/Orchard.Packaging/ViewModels/PackagingModulesViewModel.cs
Sebastien Ros a2e4618986 Admin UI experience for Packaging
--HG--
branch : dev
2010-07-23 16:37:25 -07:00

10 lines
362 B
C#

using System.Collections.Generic;
using Orchard.Packaging.Services;
namespace Orchard.Packaging.ViewModels {
public class PackagingModulesViewModel {
public IEnumerable<PackagingEntry> Modules { get; set; }
public IEnumerable<PackagingSource> Sources { get; set; }
public PackagingSource SelectedSource { get; set; }
}
}