using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// Points of Interest for @telepoi command
///
public partial class PointsOfInterest
{
///
/// Unique Id of this POI
///
public uint Id { get; set; }
///
/// Name for POI
///
public string Name { get; set; }
///
/// Weenie Class Id of portal weenie to reference for destination of POI
///
public uint WeenieClassId { get; set; }
public DateTime LastModified { get; set; }
}