add notes and fix up imports

This commit is contained in:
CWX
2025-01-07 13:00:49 +00:00
parent 18d56af3e9
commit 78acaed654
10 changed files with 35 additions and 11 deletions
@@ -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
{
}