14 lines
326 B
C#
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; }
|
|
|
|
}
|