BooksPublishersLink.cs
Home
/
src /
Model /
Calibre.Model.Database /
Entities /
Publisher /
BooksPublishersLink.cs
using System;
using System.Collections.Generic;
#nullable disable
namespace Calibre.Model.Database.Entities
{
public partial class BooksPublishersLink
{
public long Id { get; set; }
public long Book { get; set; }
public long Publisher { get; set; }
}
}