25 lines
571 B
C#
25 lines
571 B
C#
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; }
|
|
}
|