qstbak/QuestionableCompanion/QuestionableCompanion.Models/AlliedSocietyProgress.cs
2025-12-04 04:39:08 +10:00

12 lines
254 B
C#

namespace QuestionableCompanion.Models;
public class AlliedSocietyProgress
{
public required string CharacterId { get; set; }
public required byte SocietyId { get; set; }
public int CurrentRank { get; set; }
public bool IsMaxRank { get; set; }
}