qstbak/QuestionableCompanion/QuestionableCompanion.Models/QuestProfile.cs
2025-12-04 04:39:08 +10:00

16 lines
367 B
C#

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