- StorageNode, StorageScanOptions models - SearchResult, SearchOptions models - DuplicateItem, DuplicateGroup, DuplicateScanOptions models - IStorageService, ISearchService, IDuplicatesService interfaces
9 lines
244 B
C#
9 lines
244 B
C#
namespace SharepointToolbox.Core.Models;
|
|
|
|
public class DuplicateGroup
|
|
{
|
|
public string GroupKey { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public List<DuplicateItem> Items { get; set; } = new();
|
|
}
|