mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
20 lines
583 B
C#
20 lines
583 B
C#
|
|
namespace API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Represents the progress a single user has on a given Volume. Progress is realistically tracked against the Volume's chapters.
|
|
/// </summary>
|
|
public class AppUserProgress
|
|
{
|
|
public int Id { get; set; }
|
|
public int PagesRead { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
|
|
public int ChapterId { get; set; }
|
|
|
|
// Relationships
|
|
public AppUser AppUser { get; set; }
|
|
public int AppUserId { get; set; }
|
|
}
|
|
} |