using System; using System.Collections.Generic; namespace Server.Engines.MLQuests { public interface IQuestGiver { List MLQuests{ get; } Serial Serial{ get; } bool Deleted{ get; } Type GetType(); } }