mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-28 01:02:29 -04:00
7 lines
134 B
C#
7 lines
134 B
C#
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record CreateReadingListDto
|
|
{
|
|
public string Title { get; init; } = default!;
|
|
}
|