mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-04 04:05:04 -05:00
11 lines
214 B
C#
11 lines
214 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.ReadingLists.CBL;
|
|
|
|
|
|
public sealed record CblConflictQuestion
|
|
{
|
|
public string SeriesName { get; set; }
|
|
public IList<int> LibrariesIds { get; set; }
|
|
}
|