/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Storage/Ftp/FtpManager.cs
14 строк
326 B
0x5BFA
Code Quality: Re-organize the structure of Files.App.Storage (#17340)
29 июл 2025, 00:54
Не верифицирован
29 июл 2025, 00:54
7203007
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. using System.Net; namespace Files.App.Storage { public static class FtpManager { public static readonly Dictionary<string, NetworkCredential> Credentials = []; public static readonly NetworkCredential Anonymous = new("anonymous", "anonymous"); } }