/ GUNRPG.ClientModels / InfilConstants.cs
InfilConstants.cs
 1  namespace GUNRPG.ClientModels;
 2  
 3  /// <summary>
 4  /// Shared constants for infil (infiltration) rules used by all clients.
 5  /// Server-side enforcement lives in OperatorExfilService; these values must stay in sync.
 6  /// </summary>
 7  public static class InfilConstants
 8  {
 9      /// <summary>
10      /// Maximum duration of a single infil session in minutes.
11      /// Operators who do not exfil within this window are automatically failed.
12      /// Must match <c>OperatorExfilService.InfilTimerMinutes</c> in GUNRPG.Application.
13      /// </summary>
14      public const int InfilDurationMinutes = 30;
15  }