18 lines
392 B
C#
18 lines
392 B
C#
using System;
|
|
|
|
namespace Umbraco.Cms.Core.Models
|
|
{
|
|
public class ContentVersionCleanupPolicySettings
|
|
{
|
|
public int ContentTypeId { get; set; }
|
|
|
|
public bool PreventCleanup { get; set; }
|
|
|
|
public int? KeepAllVersionsNewerThanDays { get; set; }
|
|
|
|
public int? KeepLatestVersionPerDayForDays { get; set; }
|
|
|
|
public DateTime Updated { get; set; }
|
|
}
|
|
}
|