mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
17 lines
573 B
C#
17 lines
573 B
C#
namespace API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Represents the progress a single user has on a given Volume.
|
|
/// </summary>
|
|
public class AppUserProgress
|
|
{
|
|
public int Id { get; set; }
|
|
public int PagesRead { get; set; }
|
|
|
|
public AppUser AppUser { get; set; }
|
|
public int AppUserId { get; set; }
|
|
public int VolumeId { get; set; }
|
|
public int SeriesId { get; set; } // shortcut
|
|
//public bool VolumeCompleted { get; set; } // This will be set true if PagesRead == Sum of MangaFiles on volume
|
|
}
|
|
} |