using System.Collections.Generic; namespace API.DTOs; public sealed record CopySettingsFromLibraryDto { public int SourceLibraryId { get; set; } public List TargetLibraryIds { get; set; } /// /// Include copying over the type /// public bool IncludeType { get; set; } }