Note: adding ref to Microsoft.NET.Test.Sdk fixes AutoFixture AutoDataAttribute (and sub classes)
15 lines
397 B
C#
15 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Core.Services
|
|
{
|
|
public interface IContentVersionCleanupService
|
|
{
|
|
/// <summary>
|
|
/// Removes historic content versions according to a policy.
|
|
/// </summary>
|
|
IReadOnlyCollection<HistoricContentVersionMeta> PerformContentVersionCleanup(DateTime asAtDate);
|
|
}
|
|
}
|