using System; using System.Collections.Generic; using Dalamud.Game.ClientState.Objects.SubKinds; using Lumina.Excel.GeneratedSheets; namespace Expedience { public class CurrentDutyInfo { public PlayerCharacter Player { get; set; } public string PlaceName { get; set; } public List Party { get; set; } } }