Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsChatMessageReceived.cs
T
2025-07-21 21:09:17 +01:00

19 lines
529 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
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 MongoId? DialogId { get; set; }
[JsonPropertyName("message")]
public Message? Message { get; set; }
[JsonPropertyName("profiles")]
public List<GroupCharacter>? Profiles { get; set; }
}