qstcompanion v1.0.1

This commit is contained in:
alydev 2025-12-04 04:39:08 +10:00
parent 3e10cbbbf2
commit 44c67ab71b
79 changed files with 21148 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace QuestionableCompanion.Models;
public class AlliedSocietyCharacterStatus
{
public required string CharacterId { get; set; }
public AlliedSocietyRotationStatus Status { get; set; }
public DateTime? LastCompletionDate { get; set; }
public List<string> ImportedQuestIds { get; set; } = new List<string>();
}