()
| 190 | public static int RandomSessionCount() => _random.Next(3, 11); |
| 191 | |
| 192 | public static (string, string, string) GetLocation() |
| 193 | { |
| 194 | var index = _random.Next(0, locations.Length); |
| 195 | return locations[index]; |
| 196 | } |
| 197 | |
| 198 | public static (string, string, string, string) GetDeviceInfo() |
| 199 | { |