mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
9 lines
265 B
C#
9 lines
265 B
C#
using Orchard.MediaLibrary.Models;
|
|
|
|
namespace Orchard.MediaLibrary.ViewModels {
|
|
public class ImportMediaViewModel {
|
|
public string FolderPath { get; set; }
|
|
public string Type { get; set; }
|
|
public MediaPart Replace { get; set; }
|
|
}
|
|
} |