2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

16 lines
527 B
C#

namespace Observatory.Framework.Files.Journal
{
public class ModuleSwap : JournalBase
{
public ulong MarketID { get; init; }
public string FromSlot { get; init; }
public string ToSlot { get; init; }
public string FromItem { get; init; }
public string FromItem_Localised { get; init; }
public string ToItem { get; init; }
public string ToItem_Localised { get; init; }
public string Ship { get; init; }
public ulong ShipID { get; init; }
}
}