d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
15 lines
347 B
C#
15 lines
347 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record GetRaidTimeResponse
|
|
{
|
|
|
|
|
|
[JsonPropertyName("NewSurviveTimeSeconds")]
|
|
public double? NewSurviveTimeSeconds { get; set; }
|
|
|
|
[JsonPropertyName("OriginalSurvivalTimeSeconds")]
|
|
public double? OriginalSurvivalTimeSeconds { get; set; }
|
|
}
|