21 lines
414 B
C#
21 lines
414 B
C#
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 bool Enabled { get; set; }
|
|
}
|