Kavita/API/DTOs/CopySettingsFromLibraryDto.cs
2025-05-04 08:41:29 -05:00

14 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; }
}