10 lines
187 B
C#
10 lines
187 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Match;
|
|
|
|
public record ProfileStatusRequest
|
|
{
|
|
[JsonPropertyName("groupId")]
|
|
public int? GroupId { get; set; }
|
|
}
|