using System;
using System.Collections.Generic;
namespace ACE.Database.Models.Shard;
///
/// TitleBook Properties of Weenies
///
public partial class CharacterPropertiesTitleBook
{
///
/// Id of the character this property belongs to
///
public uint CharacterId { get; set; }
///
/// Id of Title
///
public uint TitleId { get; set; }
public virtual Character Character { get; set; }
}