0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
2024-05-21 19:10:17 +01:00

21 lines
572 B
C#

using System.Collections.Generic;
namespace SPT.SinglePlayer.Patches.ScavMode
{
public class RaidTimeResponse
{
public int RaidTimeMinutes { get; set; }
public int? NewSurviveTimeSeconds { get; set; }
public int OriginalSurvivalTimeSeconds { get; set; }
public List<ExitChanges> ExitChanges { get; set; }
}
public class ExitChanges
{
public string Name{ get; set; }
public int? MinTime { get; set; }
public int? MaxTime { get; set; }
public int? Chance { get; set; }
}
}