LastReadPosition.cs

20 lines | 500 B Blame History Raw Download
using System;
using System.Collections.Generic;

#nullable disable

namespace Calibre.Model.Database.Entities
{
    public partial class LastReadPosition
    {
        public long Id { get; set; }
        public long Book { get; set; }
        public string Format { get; set; }
        public string User { get; set; }
        public string Device { get; set; }
        public string Cfi { get; set; }
        public double Epoch { get; set; }
        public double PosFrac { get; set; }
    }
}