add notes and fix up imports
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using Core.Models.Eft.Bot;
|
||||
using Core.Models.Eft.Common;
|
||||
using Core.Models.Eft.Common.Tables;
|
||||
using Core.Models.Eft.Match;
|
||||
using Core.Models.Spt.Bots;
|
||||
using Core.Models.Spt.Config;
|
||||
using Condition = Core.Models.Spt.Config.Condition;
|
||||
|
||||
@@ -41,9 +41,9 @@ public class BuildController
|
||||
/// </summary>
|
||||
/// <param name="sessionId"></param>
|
||||
/// <param name="request"></param>
|
||||
public void RemoveBuild(string sessionId, RemoveBuildReqestData request)
|
||||
public void RemoveBuild(string sessionId, RemoveBuildRequestData request)
|
||||
{
|
||||
RemovePlayerBuild(request.id, sessionId);
|
||||
RemovePlayerBuild(request.Id, sessionId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -30,7 +30,7 @@ public class CustomizationController
|
||||
/// <returns>ItemEventRouterResponse</returns>
|
||||
public ItemEventRouterResponse BuyClothing(
|
||||
PmcData pmcData,
|
||||
BuyClothingRequest buyClothingRequest,
|
||||
BuyClothingRequestData buyClothingRequest,
|
||||
string sessionId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
@@ -84,7 +84,7 @@ public class CustomizationController
|
||||
/// <param name="sessionId"></param>
|
||||
/// <param name="info"></param>
|
||||
/// <returns></returns>
|
||||
public HideoutCustomisationStorage GetHideoutCustomisation(
|
||||
public HideoutCustomisation GetHideoutCustomisation(
|
||||
string sessionId,
|
||||
EmptyRequestData info)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@ public class DialogueController
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="chatBot"></param>
|
||||
public void RegisterChatBot(DialogueChatBot chatBot)
|
||||
public void RegisterChatBot(DialogueChatBot chatBot) // TODO: this is in with the helper types
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
using Core.Models.Eft.Launcher;
|
||||
using Core.Models.Eft.Profile;
|
||||
using Core.Models.Spt.Mod;
|
||||
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
using Core.Models.Eft.Common.Tables;
|
||||
using Core.Models.Eft.Location;
|
||||
|
||||
namespace Core.Controllers;
|
||||
|
||||
public class LocationController
|
||||
@@ -18,7 +21,7 @@ public class LocationController
|
||||
/// </summary>
|
||||
/// <param name="request"></param>
|
||||
/// <returns></returns>
|
||||
public GetAirDropLootResponse GetAirDropLoot(GetAirDropLootRequest request)
|
||||
public GetAirdropLootResponse GetAirDropLoot(GetAirdropLootRequest request)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
using Core.Models.Eft.Match;
|
||||
|
||||
namespace Core.Controllers;
|
||||
|
||||
public class MatchController
|
||||
@@ -38,7 +40,7 @@ public class MatchController
|
||||
/// </summary>
|
||||
/// <param name="info"></param>
|
||||
/// <returns></returns>
|
||||
public MatchGroupStatusReponse GetGroupStatus(
|
||||
public MatchGroupStatusResponse GetGroupStatus(
|
||||
MatchGroupStatusRequest info)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using Core.Models.Eft.Common;
|
||||
using Core.Models.Eft.ItemEvent;
|
||||
using Core.Models.Eft.Notes;
|
||||
|
||||
namespace Core.Controllers;
|
||||
|
||||
@@ -14,7 +15,7 @@ public class NoteController
|
||||
/// <returns></returns>
|
||||
public ItemEventRouterResponse AddNote(
|
||||
PmcData pmcData,
|
||||
NoteActionBody body,
|
||||
NoteActionData body,
|
||||
string sessionId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
@@ -29,7 +30,7 @@ public class NoteController
|
||||
/// <returns></returns>
|
||||
public ItemEventRouterResponse EditNote(
|
||||
PmcData pmcData,
|
||||
NoteActionBody body,
|
||||
NoteActionData body,
|
||||
string sessionId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
@@ -44,7 +45,7 @@ public class NoteController
|
||||
/// <returns></returns>
|
||||
public ItemEventRouterResponse DeleteNote(
|
||||
PmcData pmcData,
|
||||
NoteActionBody body,
|
||||
NoteActionData body,
|
||||
string sessionId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Core.Models.Eft.Profile;
|
||||
|
||||
namespace Core.Models.Eft.Dialog;
|
||||
|
||||
public class GetAllAttachmentsResponse
|
||||
{
|
||||
[JsonPropertyName("messages")]
|
||||
public List<Message> Messages { get; set; }
|
||||
|
||||
[JsonPropertyName("profiles")]
|
||||
public List<object> Profiles { get; set; } // Assuming 'any' translates to 'object'
|
||||
|
||||
[JsonPropertyName("hasMessagesWithRewards")]
|
||||
public bool HasMessagesWithRewards { get; set; }
|
||||
}
|
||||
@@ -2,6 +2,6 @@ using Core.Models.Eft.Match;
|
||||
|
||||
namespace Core.Models.Eft.Ws;
|
||||
|
||||
public class WsGroupMatchInviteAccept : WsNotificationEvent, GroupCharacter // TODOL trying to inherit multiTypes
|
||||
public class WsGroupMatchInviteAccept : WsNotificationEvent, GroupCharacter // TODO: trying to inherit multiTypes
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user