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

14 lines
284 B
C#

namespace QuestionableCompanion.Services;
public class ExpansionInfo
{
public string Name { get; set; } = "";
public string ShortName { get; set; } = "";
public uint MinQuestId { get; set; }
public uint MaxQuestId { get; set; }
public int ExpectedQuestCount { get; set; }
}