You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
C#
15 lines
355 B
C#
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<ClassJob> Party { get; set; }
|
|
}
|
|
}
|