6 lines
134 B
C#
6 lines
134 B
C#
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record CreateReadingListDto
|
|
{
|
|
public string Title { get; init; } = default!;
|
|
}
|