CustomColumn.cs

21 lines | 565 B Blame History Raw Download
using System;
using System.Collections.Generic;

#nullable disable

namespace Calibre.Model.Database.Entities
{
    public partial class CustomColumn
    {
        public long Id { get; set; }
        public string Label { get; set; }
        public string Name { get; set; }
        public string Datatype { get; set; }
        public byte[] MarkForDelete { get; set; }
        public byte[] Editable { get; set; }
        public string Display { get; set; }
        public byte[] IsMultiple { get; set; }
        public byte[] Normalized { get; set; }
    }
}