15 lines
467 B
C#
15 lines
467 B
C#
using LiteCharms.Features.MidrandBooks.Authors.Entities;
|
|
using LiteCharms.Features.MidrandBooks.Pages.Entities;
|
|
using LiteCharms.Features.MidrandBooks.Products.Entities;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.AuthorBooks.Entities;
|
|
|
|
public class AuthorBook : Models.AuthorBook
|
|
{
|
|
public virtual Author Author { get; set; } = new();
|
|
|
|
public new virtual Product? Product { get; set; }
|
|
|
|
public virtual ICollection<BookPage> Pages { get; set; } = [];
|
|
}
|