mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-06-05 22:35:17 -04:00
fca1585e6a
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Weblate (bot) <hosted@weblate.org> Co-authored-by: Adam Havránek <adamhavra@seznam.cz> Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com> Co-authored-by: Duarte Silva <smallflake@protonmail.com> Co-authored-by: EK <eukarya@keio.jp> Co-authored-by: Fifrok <31262@s.pm.szczecin.pl> Co-authored-by: Frozehunter <frozehunter@me.com> Co-authored-by: Gregory.Open <gregory.open@proton.me> Co-authored-by: Havokdan <havokdan@yahoo.com.br> Co-authored-by: Lyrq <lyrq.ku@gmail.com> Co-authored-by: on9686 <on9686@gmail.com> Co-authored-by: karigane <169052233+karigane-cha@users.noreply.github.com> Co-authored-by: majora2007 <kavitareader@gmail.com>
30 lines
718 B
C#
30 lines
718 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Kavita.Models.DTOs.Progress;
|
|
using Kavita.Models.Entities.User;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Kavita.Models.Entities.Progress;
|
|
|
|
/// <summary>
|
|
/// Represents a single day's worth of Reading Sessions
|
|
/// </summary>
|
|
public class AppUserReadingHistory
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime DateUtc { get; set; }
|
|
/// <summary>
|
|
/// JSON Column
|
|
/// </summary>
|
|
public DailyReadingDataDto Data { get; set; }
|
|
|
|
/// <summary>
|
|
/// JSON Column
|
|
/// </summary>
|
|
public IList<ClientInfoData> ClientInfoUsed { get; set; }
|
|
|
|
|
|
public int AppUserId { get; set; }
|
|
public virtual AppUser AppUser { get; set; }
|
|
}
|