14 lines
301 B
C#
14 lines
301 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Utils;
|
|
|
|
namespace Core.Models.Eft.Match;
|
|
|
|
public record MatchGroupInviteSendRequest : IRequestData
|
|
{
|
|
[JsonPropertyName("to")]
|
|
public string? To { get; set; }
|
|
|
|
[JsonPropertyName("inLobby")]
|
|
public bool? InLobby { get; set; }
|
|
}
|