using System;
using System.Collections.Generic;
namespace ACE.Database.Models.Shard;
///
/// Palette Changes (from PCAPs) of Weenies
///
public partial class BiotaPropertiesPalette
{
///
/// Unique Id of this Property
///
public uint Id { get; set; }
///
/// Id of the object this property belongs to
///
public uint ObjectId { get; set; }
public uint SubPaletteId { get; set; }
public ushort Offset { get; set; }
public ushort Length { get; set; }
public byte? Order { get; set; }
public virtual Biota Object { get; set; }
}