10 lines
214 B
C#
10 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; }
|
|
}
|