mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
8 lines
198 B
C#
8 lines
198 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Orchard.ImportExport.ViewModels {
|
|
public class ExportViewModel {
|
|
public IList<ExportActionViewModel> Actions { get; set; }
|
|
}
|
|
}
|