mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-24 05:23:33 +08:00
9 lines
193 B
C#
9 lines
193 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Modules.ViewModels {
|
|
public class FeaturesViewModel {
|
|
public IEnumerable<ModuleFeature> Features { get; set; }
|
|
}
|
|
}
|
|
|