mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 14:14:39 -04:00
9 lines
194 B
C#
9 lines
194 B
C#
namespace API.Data
|
|
{
|
|
public class BookmarkDto
|
|
{
|
|
public int VolumeId { get; init; }
|
|
public int PageNum { get; init; }
|
|
public int SeriesId { get; init; }
|
|
}
|
|
} |