16 lines
338 B
C#
16 lines
338 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Server;
|
|
|
|
/// <summary>
|
|
/// Model for Assets/database/server.json
|
|
/// </summary>
|
|
public record ServerBase
|
|
{
|
|
[JsonPropertyName("ip")]
|
|
public required string Ip { get; set; }
|
|
|
|
[JsonPropertyName("port")]
|
|
public required int Port { get; set; }
|
|
}
|