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