namespace SharepointToolbox.Core.Models; public class TransferJob { public string SourceSiteUrl { get; set; } = string.Empty; public string SourceLibrary { get; set; } = string.Empty; public string SourceFolderPath { get; set; } = string.Empty; // relative within library public string DestinationSiteUrl { get; set; } = string.Empty; public string DestinationLibrary { get; set; } = string.Empty; public string DestinationFolderPath { get; set; } = string.Empty; public TransferMode Mode { get; set; } = TransferMode.Copy; public ConflictPolicy ConflictPolicy { get; set; } = ConflictPolicy.Skip; }