d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
21 lines
440 B
C#
21 lines
440 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Match;
|
|
|
|
public record EndOfflineRaidRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("crc")]
|
|
public int? Crc { get; set; }
|
|
|
|
[JsonPropertyName("exitStatus")]
|
|
public string? ExitStatus { get; set; }
|
|
|
|
[JsonPropertyName("exitName")]
|
|
public string? ExitName { get; set; }
|
|
|
|
[JsonPropertyName("raidSeconds")]
|
|
public int? RaidSeconds { get; set; }
|
|
}
|