Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsChatMessageReceived.cs
T
2025-03-07 13:16:43 +00:00

30 lines
558 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Match;
using SPTarkov.Server.Core.Models.Eft.Profile;
namespace SPTarkov.Server.Core.Models.Eft.Ws;
public record WsChatMessageReceived : WsNotificationEvent
{
[JsonPropertyName("dialogId")]
public string? DialogId
{
get;
set;
}
[JsonPropertyName("message")]
public Message? Message
{
get;
set;
}
[JsonPropertyName("profiles")]
public List<GroupCharacter>? Profiles
{
get;
set;
}
}