- StorageNode, StorageScanOptions models - SearchResult, SearchOptions models - DuplicateItem, DuplicateGroup, DuplicateScanOptions models - IStorageService, ISearchService, IDuplicatesService interfaces
17 lines
668 B
C#
17 lines
668 B
C#
namespace SharepointToolbox.Core.Models;
|
|
|
|
public class StorageNode
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
public string SiteTitle { get; set; } = string.Empty;
|
|
public string Library { get; set; } = string.Empty;
|
|
public long TotalSizeBytes { get; set; }
|
|
public long FileStreamSizeBytes { get; set; }
|
|
public long VersionSizeBytes => Math.Max(0L, TotalSizeBytes - FileStreamSizeBytes);
|
|
public long TotalFileCount { get; set; }
|
|
public DateTime? LastModified { get; set; }
|
|
public int IndentLevel { get; set; }
|
|
public List<StorageNode> Children { get; set; } = new();
|
|
}
|