25 lines
514 B
C#
25 lines
514 B
C#
using LiteCharms.Features.MidrandBooks.Products.Models;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.AuthorBooks.Models;
|
|
|
|
public class AuthorBook
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public long AuthorId { get; set; }
|
|
|
|
public long ProductId { get; set; }
|
|
|
|
public int Rating { get; set; }
|
|
|
|
public int Ranking { get; set; }
|
|
|
|
public Product? Product { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|