Annotation.cs

22 lines | 603 B Blame History Raw Download
using System;
using System.Collections.Generic;

#nullable disable

namespace Calibre.Model.Database.Entities
{
    public partial class Annotation
    {
        public long Id { get; set; }
        public long Book { get; set; }
        public string Format { get; set; }
        public string UserType { get; set; }
        public string User { get; set; }
        public double Timestamp { get; set; }
        public string AnnotId { get; set; }
        public string AnnotType { get; set; }
        public string AnnotData { get; set; }
        public string SearchableText { get; set; }
    }
}