mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
10 lines
362 B
C#
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; }
|
|
}
|
|
} |