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