mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
12 lines
236 B
C#
12 lines
236 B
C#
using System;
|
|
|
|
namespace API.DTOs.Progress;
|
|
#nullable enable
|
|
|
|
public class UpdateUserProgressDto
|
|
{
|
|
public int PageNum { get; set; }
|
|
public DateTime LastModifiedUtc { get; set; }
|
|
public DateTime CreatedUtc { get; set; }
|
|
}
|