Identifier.cs

16 lines | 322 B Blame History Raw Download
using System;
using System.Collections.Generic;

#nullable disable

namespace Calibre.Model.Database.Entities
{
    public partial class Identifier
    {
        public long Id { get; set; }
        public long Book { get; set; }
        public string Type { get; set; }
        public string Val { get; set; }
    }
}