using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// House Portal Destinations
///
public partial class HousePortal
{
///
/// Unique Id of this House Portal
///
public uint Id { get; set; }
///
/// Unique Id of House
///
public uint HouseId { get; set; }
public uint ObjCellId { get; set; }
public float OriginX { get; set; }
public float OriginY { get; set; }
public float OriginZ { get; set; }
public float AnglesW { get; set; }
public float AnglesX { get; set; }
public float AnglesY { get; set; }
public float AnglesZ { get; set; }
public DateTime LastModified { get; set; }
}