Files
Umbraco-CMS/src/Umbraco.Core/Packaging/ICreatedPackagesRepository.cs
T

17 lines
484 B
C#

using Umbraco.Core.Models.Packaging;
namespace Umbraco.Core.Packaging
{
/// <summary>
/// Manages the storage of created package definitions
/// </summary>
public interface ICreatedPackagesRepository : IPackageDefinitionRepository
{
/// <summary>
/// Creates the package file and returns it's physical path
/// </summary>
/// <param name="definition"></param>
string ExportPackage(PackageDefinition definition);
}
}