using System; using System.Collections.Generic; namespace QuestionableCompanion.Models; [Serializable] public class QuestProfile { public string Name { get; set; } = "New Profile"; public List Characters { get; set; } = new List(); public List Quests { get; set; } = new List(); public bool IsActive { get; set; } }