using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// Weenie Instance Links
///
public partial class LandblockInstanceLink
{
///
/// Unique Id of this Instance Link
///
public uint Id { get; set; }
///
/// GUID of parent instance
///
public uint ParentGuid { get; set; }
///
/// GUID of child instance
///
public uint ChildGuid { get; set; }
public DateTime LastModified { get; set; }
public virtual LandblockInstance Parent { get; set; }
}