Kavita/Kavita.Models/DTOs/Progress/ReadingSessionDto.cs
Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

17 lines
453 B
C#

using System;
using System.Collections.Generic;
namespace Kavita.Models.DTOs.Progress;
public sealed record ReadingSessionDto
{
public int Id { get; set; }
public DateTime StartTimeUtc { get; set; }
public DateTime? EndTimeUtc { get; set; }
public bool IsActive { get; set; } = true;
public IList<ReadingActivityDataDto> ActivityData { get; set; }
public int UserId { get; set; }
public string Username { get; set; }
}