0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 04:50:45 -05:00
modules/project/SPT.Custom/Models/ReleaseResponse.cs

19 lines
809 B
C#
Raw Normal View History

2024-05-21 19:10:17 +01:00
namespace SPT.Custom.Models
{
public struct ReleaseResponse
{
public bool isBeta { get; set; }
public bool isModdable { get; set; }
public bool isModded { get; set; }
public float betaDisclaimerTimeoutDelay { get; set; }
public string betaDisclaimerText { get; set; }
public string betaDisclaimerAcceptText { get; set; }
public string serverModsLoadedText { get; set; }
public string serverModsLoadedDebugText { get; set; }
public string clientModsLoadedText { get; set; }
public string clientModsLoadedDebugText { get; set; }
public string illegalPluginsLoadedText { get; set; }
public string illegalPluginsExceptionText { get; set; }
public string releaseSummaryText { get; set; }
}
}