mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 04:26:11 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
15 lines
336 B
C#
15 lines
336 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kavita.Models.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; }
|
|
|
|
}
|