Files
Chomp ba4e8d9c14 Removed password from profiles
Added migration to remove password property from profiles
2025-10-02 09:56:51 +01:00

11 lines
269 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Utils;
namespace SPTarkov.Server.Core.Models.Eft.Launcher;
public record GetMiniProfileRequestData : IRequestData
{
[JsonPropertyName("username")]
public string? Username { get; set; }
}