mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
13 lines
515 B
C#
13 lines
515 B
C#
using System.Collections.Generic;
|
|
using Orchard.ContentManagement.MetaData.Models;
|
|
using Orchard.MediaLibrary.Models;
|
|
|
|
namespace Orchard.MediaLibrary.ViewModels {
|
|
public class MediaManagerIndexViewModel {
|
|
public string FolderPath { get; set; }
|
|
public bool DialogMode { get; set; }
|
|
public IEnumerable<ContentTypeDefinition> MediaTypes { get; set; }
|
|
public dynamic CustomActionsShapes { get; set; }
|
|
public dynamic CustomNavigationShapes { get; set; }
|
|
}
|
|
} |