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