mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
9 lines
252 B
C#
9 lines
252 B
C#
using System.Collections.Generic;
|
|
using Orchard.Environment.Configuration;
|
|
|
|
namespace Orchard.MultiTenancy.ViewModels {
|
|
public class TenantsIndexViewModel {
|
|
public IEnumerable<ShellSettings> TenantSettings { get; set; }
|
|
}
|
|
}
|