using System;
using System.Collections.Generic;
namespace ACE.Database.Models.Shard;
///
/// QuestBook Properties of Weenies
///
public partial class CharacterPropertiesQuestRegistry
{
///
/// Id of the character this property belongs to
///
public uint CharacterId { get; set; }
///
/// Unique Name of Quest
///
public string QuestName { get; set; }
///
/// Timestamp of last successful completion
///
public uint LastTimeCompleted { get; set; }
///
/// Number of successful completions
///
public int NumTimesCompleted { get; set; }
public virtual Character Character { get; set; }
}