20 lines
454 B
C#
20 lines
454 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Utils;
|
|
|
|
namespace Core.Models.Eft.Profile;
|
|
|
|
public class ProfileCreateRequestData : IRequestData
|
|
{
|
|
[JsonPropertyName("side")]
|
|
public string? Side { get; set; }
|
|
|
|
[JsonPropertyName("nickname")]
|
|
public string? Nickname { get; set; }
|
|
|
|
[JsonPropertyName("headId")]
|
|
public string? HeadId { get; set; }
|
|
|
|
[JsonPropertyName("voiceId")]
|
|
public string? VoiceId { get; set; }
|
|
}
|