Update 11 journal changes
This commit is contained in:
parent
4f4ba88878
commit
3af9e3ec7b
13 changed files with 22 additions and 3 deletions
|
|
@ -1,5 +1,8 @@
|
|||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SRVDestroyed : JournalBase
|
||||
{ }
|
||||
{
|
||||
public string SRVType { get; init; }
|
||||
public string SRVType_Localised { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
public class ChangeCrewRole : JournalBase
|
||||
{
|
||||
public string Role { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
public class CrewLaunchFighter : CrewMemberJoins
|
||||
{
|
||||
public ulong ID { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
public class CrewMemberJoins : JournalBase
|
||||
{
|
||||
public string Crew { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,5 +2,6 @@
|
|||
{
|
||||
public class CrewMemberQuits : CrewMemberJoins
|
||||
{
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
public class CrewMemberRoleChange : CrewMemberJoins
|
||||
{
|
||||
public string Role { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,5 +2,7 @@
|
|||
{
|
||||
public class DockSRV : DockFighter
|
||||
{
|
||||
public string SRVType { get; init; }
|
||||
public string SRVType_Localised { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
public class EndCrewSession : JournalBase
|
||||
{
|
||||
public bool OnCrime { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
public class JoinACrew : JournalBase
|
||||
{
|
||||
public string Captain { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,5 +4,6 @@
|
|||
{
|
||||
public string Crew { get; init; }
|
||||
public bool OnCrime { get; init; }
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,5 +5,7 @@
|
|||
public string Loadout { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
public bool PlayerControlled { get; init; }
|
||||
public string SRVType { get; init; }
|
||||
public string SRVType_Localised { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,5 +2,6 @@
|
|||
{
|
||||
public class QuitACrew : JoinACrew
|
||||
{
|
||||
public bool Telepresence { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue