d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
18 lines
340 B
C#
18 lines
340 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; }
|
|
}
|