using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// EventFilter Properties of Weenies
///
public partial class WeeniePropertiesEventFilter
{
///
/// Unique Id of this Property
///
public uint Id { get; set; }
///
/// Id of the object this property belongs to
///
public uint ObjectId { get; set; }
///
/// Id of Event to filter
///
public int Event { get; set; }
public virtual Weenie Object { get; set; }
}