Kavita/API/DTOs/CopySettingsFromLibraryDto.cs
2025-05-04 07:14:44 -07:00

15 lines
326 B
C#

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