29 lines
604 B
C#
29 lines
604 B
C#
using LiteCharms.Features.Models;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.Pages.Models;
|
|
|
|
public class BookPage
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long AuthorBookId { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public BookPageTypes Type { get; set; }
|
|
|
|
public BookContentTypes ContentType { get; set; }
|
|
|
|
public int Number { get; set; }
|
|
|
|
public byte[]? Content { get; set; }
|
|
|
|
public string[]? Notes { get; set; }
|
|
|
|
public PageReference[]? References { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|