12dd1de9f2
- Add theme system (Dark/Light palettes, ModernTheme, ThemeManager) - Add InputDialog, Spinner common view - Add DuplicatesCsvExportService - Refresh views, dialogs, and view models across tabs - Update localization strings (en/fr) - Tweak services (transfer, permissions, search, user access, ownership elevation, bulk operations) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
723 B
C#
18 lines
723 B
C#
namespace SharepointToolbox.Core.Models;
|
|
|
|
public class DuplicateItem
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Path { get; set; } = string.Empty;
|
|
public string Library { get; set; } = string.Empty;
|
|
public long? SizeBytes { get; set; }
|
|
public DateTime? Created { get; set; }
|
|
public DateTime? Modified { get; set; }
|
|
public int? FolderCount { get; set; }
|
|
public int? FileCount { get; set; }
|
|
/// <summary>URL of the site the item was collected from.</summary>
|
|
public string SiteUrl { get; set; } = string.Empty;
|
|
/// <summary>Friendly site title; falls back to a derived label when unknown.</summary>
|
|
public string SiteTitle { get; set; } = string.Empty;
|
|
}
|