Files
SPT-Server-Build/Core/Models/Eft/Notifier/SelectProfileResponse.cs
T
2025-01-07 06:52:03 -05:00

9 lines
180 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Notifier;
public class SelectProfileResponse
{
[JsonPropertyName("status")]
public string Status { get; set; }
}