mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-15 19:49:51 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4046081
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; }
|
|
}
|
|
}
|