14 lines
229 B
C#
14 lines
229 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Notifier;
|
|
|
|
public record SelectProfileResponse
|
|
{
|
|
[JsonPropertyName("status")]
|
|
public string? Status
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|