2024-05-21 19:10:17 +01:00
|
|
|
namespace SPT.Custom.Models
|
2024-03-07 22:10:07 +00:00
|
|
|
{
|
|
|
|
public struct ReleaseResponse
|
|
|
|
{
|
|
|
|
public bool isBeta { get; set; }
|
2024-03-11 08:44:50 +00:00
|
|
|
public bool isModdable { get; set; }
|
2024-03-11 22:02:45 +00:00
|
|
|
public bool isModded { get; set; }
|
2024-03-07 22:10:07 +00:00
|
|
|
public float betaDisclaimerTimeoutDelay { get; set; }
|
2024-03-11 22:02:45 +00:00
|
|
|
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; }
|
2024-03-07 22:10:07 +00:00
|
|
|
}
|
|
|
|
}
|