ConversionOption.cs
using System;
using System.Collections.Generic;
#nullable disable
namespace Calibre.Model.Database.Entities
{
    public partial class ConversionOption
    {
        public long Id { get; set; }
        public string Format { get; set; }
        public long? Book { get; set; }
        public byte[] Data { get; set; }
    }
}