15 lines
544 B
C#
15 lines
544 B
C#
namespace SharepointToolbox.Core.Models;
|
|
|
|
public class VersionCleanupResult
|
|
{
|
|
public string SiteUrl { get; init; } = string.Empty;
|
|
public string Library { get; init; } = string.Empty;
|
|
public string FileServerRelativeUrl { get; init; } = string.Empty;
|
|
public string FileName { get; init; } = string.Empty;
|
|
public int VersionsBefore { get; init; }
|
|
public int VersionsDeleted { get; init; }
|
|
public int VersionsRemaining { get; init; }
|
|
public long BytesFreed { get; init; }
|
|
public string? Error { get; init; }
|
|
}
|