mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
15 lines
326 B
C#
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; }
|
|
|
|
}
|