d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
26 lines
632 B
C#
26 lines
632 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Profile;
|
|
|
|
public record ProfileCreateRequestData : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("side")]
|
|
public string? Side { get; set; }
|
|
|
|
[JsonPropertyName("nickname")]
|
|
public string? Nickname { get; set; }
|
|
|
|
[JsonPropertyName("headId")]
|
|
public MongoId HeadId { get; set; }
|
|
|
|
[JsonPropertyName("voiceId")]
|
|
public MongoId VoiceId { get; set; }
|
|
|
|
[JsonPropertyName("sptForcePrestigeLevel")]
|
|
public int? SptForcePrestigeLevel { get; set; }
|
|
}
|