AnnotationsFtsStemmedIdx.cs

15 lines | 303 B Blame History Raw Download
using System;
using System.Collections.Generic;

#nullable disable

namespace Calibre.Model.Database.Entities
{
    public partial class AnnotationsFtsStemmedIdx
    {
        public byte[] Segid { get; set; }
        public byte[] Term { get; set; }
        public byte[] Pgno { get; set; }
    }
}