10 lines
211 B
C#
10 lines
211 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Ws;
|
|
|
|
public record WsGroupId : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("groupId")]
|
|
public string? GroupId { get; set; }
|
|
}
|