/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Shared/E2ETesting/SauceOptions.cs
35 строк
853 B
Pranav K
Use file scoped namespaces (#38076)
06 ноя 2021, 03:52
Не верифицирован
06 ноя 2021, 03:52
a450cb6
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.E2ETesting; public class SauceOptions { public string Username { get; set; } public string AccessKey { get; set; } public string TunnelIdentifier { get; set; } public string HostName { get; set; } public string TestName { get; set; } public bool IsRealDevice { get; set; } public string PlatformName { get; set; } public string PlatformVersion { get; set; } public string BrowserName { get; set; } public string BrowserVersion { get; set; } public string DeviceName { get; set; } public string DeviceOrientation { get; set; } public string AppiumVersion { get; set; } public string SeleniumVersion { get; set; } }