mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-16 03:53:19 +08:00
12 lines
273 B
C#
12 lines
273 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using System.Web.Mvc;
|
|||
|
|
|||
|
namespace Orchard.Core.Themes.ViewModels {
|
|||
|
public class PreviewViewModel {
|
|||
|
public IEnumerable<SelectListItem> Themes { get; set; }
|
|||
|
}
|
|||
|
}
|