namespace Umbraco.Cms.Core.Packaging { /// /// Manages the storage of created package definitions /// public interface ICreatedPackagesRepository : IPackageDefinitionRepository { /// /// Creates the package file and returns it's physical path /// /// string ExportPackage(PackageDefinition definition); } }