using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// Palette Changes (from PCAPs) of Weenies
///
public partial class WeeniePropertiesPalette
{
///
/// 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 virtual Weenie Object { get; set; }
}