using System;
using System.Collections.Generic;
namespace ACE.Database.Models.Shard;
///
/// Page Properties of Weenies
///
public partial class BiotaPropertiesBookPageData
{
///
/// Unique Id of this Property
///
public uint Id { get; set; }
///
/// Id of the Book object this page belongs to
///
public uint ObjectId { get; set; }
///
/// Id of the page number for this page
///
public uint PageId { get; set; }
///
/// Id of the Author of this page
///
public uint AuthorId { get; set; }
///
/// Character Name of the Author of this page
///
public string AuthorName { get; set; }
///
/// Account Name of the Author of this page
///
public string AuthorAccount { get; set; }
///
/// if this is true, any character in the world can change the page
///
public bool IgnoreAuthor { get; set; }
///
/// Text of the Page
///
public string PageText { get; set; }
public virtual Biota Object { get; set; }
}