mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 11:44:58 +08:00
Small changes to model/interfaces
Cropping some data Adding an Update method, and renaming to ITopologyDescriptorManager --HG-- branch : dev
This commit is contained in:
@@ -6,9 +6,13 @@ using Orchard.Environment.Topology;
|
||||
using Orchard.Environment.Topology.Models;
|
||||
|
||||
namespace Orchard.Core.Settings.Services {
|
||||
public class TopologyDescriptorProvider : ITopologyDescriptorProvider {
|
||||
public class TopologyDescriptorManager : ITopologyDescriptorManager {
|
||||
public ShellTopologyDescriptor GetTopologyDescriptor() {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void UpdateTopologyDescriptor(int priorSerialNumber, IEnumerable<TopologyFeature> enabledFeatures, IEnumerable<TopologyParameter> parameters) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user