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