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,23 @@
|
|||
using System;
|
||||
|
||||
namespace QuestionableCompanion.Models;
|
||||
|
||||
[Serializable]
|
||||
public class ExecutionState
|
||||
{
|
||||
public string ActiveProfile { get; set; } = string.Empty;
|
||||
|
||||
public string CurrentCharacter { get; set; } = string.Empty;
|
||||
|
||||
public uint CurrentQuestId { get; set; }
|
||||
|
||||
public string CurrentQuestName { get; set; } = string.Empty;
|
||||
|
||||
public string CurrentSequence { get; set; } = string.Empty;
|
||||
|
||||
public ExecutionStatus Status { get; set; }
|
||||
|
||||
public int Progress { get; set; }
|
||||
|
||||
public DateTime LastUpdate { get; set; } = DateTime.Now;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue