- StorageNode, StorageScanOptions models - SearchResult, SearchOptions models - DuplicateItem, DuplicateGroup, DuplicateScanOptions models - IStorageService, ISearchService, IDuplicatesService interfaces
14 lines
486 B
C#
14 lines
486 B
C#
namespace SharepointToolbox.Core.Models;
|
|
|
|
public class SearchResult
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Path { get; set; } = string.Empty;
|
|
public string FileExtension { get; set; } = string.Empty;
|
|
public DateTime? Created { get; set; }
|
|
public DateTime? LastModified { get; set; }
|
|
public string Author { get; set; } = string.Empty;
|
|
public string ModifiedBy { get; set; } = string.Empty;
|
|
public long SizeBytes { get; set; }
|
|
}
|