mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
10 lines
372 B
C#
10 lines
372 B
C#
using System.Collections.Generic;
|
|
using Orchard.Mvc.ViewModels;
|
|
|
|
namespace Orchard.Core.Settings.ViewModels {
|
|
public class SiteCulturesViewModel : BaseViewModel {
|
|
public string CurrentCulture { get; set; }
|
|
public IEnumerable<string> SiteCultures { get; set; }
|
|
public IEnumerable<string> AvailableSystemCultures { get; set; }
|
|
}
|
|
} |