mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
13 lines
423 B
C#
13 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Packaging.Services {
|
|
public interface IPackagingSourceManager : IDependency {
|
|
IEnumerable<PackagingSource> GetSources();
|
|
void AddSource(PackagingSource source);
|
|
void RemoveSource(Guid id);
|
|
void UpdateLists();
|
|
|
|
IEnumerable<PackagingEntry> GetModuleList(PackagingSource packagingSource = null);
|
|
}
|
|
} |