mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 04:34:49 -04:00
19 lines
518 B
C#
19 lines
518 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
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 int VolumeId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
|
|
// Relationships
|
|
public AppUser AppUser { get; set; }
|
|
public int AppUserId { get; set; }
|
|
}
|
|
} |