0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
modules/project/Aki.Custom/Models/ReleaseResponse.cs
Cj 73db17ea78 Show mods loaded in cool debug message (!95)
needs merged with: SPT-AKI/Server#258

Shows if mods are loaded in the cool debug message, will show if either server mods or client mods are present.

Co-authored-by: Cj <161484149+CJ-SPT@users.noreply.github.com>
Reviewed-on: SPT-AKI/Modules#95
Co-authored-by: Cj <cj@noreply.dev.sp-tarkov.com>
Co-committed-by: Cj <cj@noreply.dev.sp-tarkov.com>
2024-03-11 22:02:45 +00:00

19 lines
809 B
C#

namespace Aki.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; }
}
}