mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 16:33:43 -04:00
Reorganize all observatory core projects into monorepo (#25)
* chore: move all observatory repos to core * only save journal folder on change, don't constantly re-check during monitoring * chore: monorepo project changes * chore: monorepo migration
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class AsteroidCracked : JournalBase
|
||||
{
|
||||
public string Body { get; init; }
|
||||
}
|
||||
}
|
8
ObservatoryFramework/Files/Journal/Trade/BuyTradeData.cs
Normal file
8
ObservatoryFramework/Files/Journal/Trade/BuyTradeData.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BuyTradeData : JournalBase
|
||||
{
|
||||
public string System { get; init; }
|
||||
public long Cost { get; init; }
|
||||
}
|
||||
}
|
10
ObservatoryFramework/Files/Journal/Trade/CollectCargo.cs
Normal file
10
ObservatoryFramework/Files/Journal/Trade/CollectCargo.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CollectCargo : JournalBase
|
||||
{
|
||||
public string Type { get; init; }
|
||||
public string Type_Localised { get; init; }
|
||||
public bool Stolen { get; init; }
|
||||
public int MissionID { get; init; }
|
||||
}
|
||||
}
|
12
ObservatoryFramework/Files/Journal/Trade/EjectCargo.cs
Normal file
12
ObservatoryFramework/Files/Journal/Trade/EjectCargo.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class EjectCargo : JournalBase
|
||||
{
|
||||
public string Type { get; init; }
|
||||
public string Type_Localised { get; init; }
|
||||
public int Count { get; init; }
|
||||
public int MissionID { get; init; }
|
||||
public bool Abandoned { get; init; }
|
||||
public string PowerplayOrigin { get; init; }
|
||||
}
|
||||
}
|
12
ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs
Normal file
12
ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class MarketBuy : JournalBase
|
||||
{
|
||||
public long MarketID { get; init; }
|
||||
public string Type { get; init; }
|
||||
public string Type_Localised { get; init; }
|
||||
public int Count { get; init; }
|
||||
public int BuyPrice { get; init; }
|
||||
public long TotalCost { get; init; }
|
||||
}
|
||||
}
|
16
ObservatoryFramework/Files/Journal/Trade/MarketSell.cs
Normal file
16
ObservatoryFramework/Files/Journal/Trade/MarketSell.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class MarketSell : JournalBase
|
||||
{
|
||||
public long MarketID { get; init; }
|
||||
public string Type { get; init; }
|
||||
public string Type_Localised { get; init; }
|
||||
public int Count { get; init; }
|
||||
public int SellPrice { get; init; }
|
||||
public long TotalSale { get; init; }
|
||||
public int AvgPricePaid { get; init; }
|
||||
public bool IllegalGoods { get; init; }
|
||||
public bool StolenGoods { get; init; }
|
||||
public bool BlackMarket { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class MiningRefined : JournalBase
|
||||
{
|
||||
public string Type { get; init; }
|
||||
public string Type_Localised { get; init; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user