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,25 @@
|
|||
using System;
|
||||
|
||||
namespace QuestionableCompanion.Models;
|
||||
|
||||
[Serializable]
|
||||
public class CharacterProgressInfo
|
||||
{
|
||||
public string World { get; set; } = "Unknown";
|
||||
|
||||
public uint LastQuestId { get; set; }
|
||||
|
||||
public string LastQuestName { get; set; } = "—";
|
||||
|
||||
public int CompletedQuestCount { get; set; }
|
||||
|
||||
public DateTime LastUpdatedUtc { get; set; } = DateTime.MinValue;
|
||||
|
||||
public uint LastCompletedMSQId { get; set; }
|
||||
|
||||
public string LastCompletedMSQName { get; set; } = "—";
|
||||
|
||||
public int CompletedMSQCount { get; set; }
|
||||
|
||||
public float MSQCompletionPercentage { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue