qstbak/QuestionableCompanion/QuestionableCompanion.Services/ExpansionProgressInfo.cs
2025-12-04 04:39:08 +10:00

14 lines
299 B
C#

namespace QuestionableCompanion.Services;
public class ExpansionProgressInfo
{
public string ExpansionName { get; set; } = "";
public string ShortName { get; set; } = "";
public int TotalQuests { get; set; }
public int CompletedQuests { get; set; }
public float Percentage { get; set; }
}