13 lines
319 B
C#
13 lines
319 B
C#
using NodaTime;
|
|
|
|
namespace FictionArchive.Service.UserNovelDataService.Models.DTOs;
|
|
|
|
public class BookmarkDto
|
|
{
|
|
public int Id { get; init; }
|
|
public uint ChapterId { get; init; }
|
|
public uint NovelId { get; init; }
|
|
public string? Description { get; init; }
|
|
public Instant CreatedTime { get; init; }
|
|
}
|