mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 08:10:45 -05:00
11 lines
291 B
C#
11 lines
291 B
C#
|
namespace Aki.Custom.Models
|
||
|
{
|
||
|
public struct ReleaseResponse
|
||
|
{
|
||
|
public bool isBeta { get; set; }
|
||
|
public string betaDisclaimer { get; set; }
|
||
|
public float betaDisclaimerTimeoutDelay { get; set; }
|
||
|
public string releaseSummary { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|