qstcompanion v1.0.1
This commit is contained in:
parent
3e10cbbbf2
commit
44c67ab71b
79 changed files with 21148 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue