using System;
using System.Collections.Generic;
namespace ACE.Database.Models.Shard;
///
/// Book Properties of Weenies
///
public partial class BiotaPropertiesBook
{
///
/// Id of the object this property belongs to
///
public uint ObjectId { get; set; }
///
/// Maximum number of pages per book
///
public int MaxNumPages { get; set; }
///
/// Maximum number of characters per page
///
public int MaxNumCharsPerPage { get; set; }
public virtual Biota Object { get; set; }
}