mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +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; }
|
|
}
|
|
}
|