/
KDP
/
SuprTimeLogAutomation
Обзор
Документация
Войти
/
KDP
/
SuprTimeLogAutomation
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Models/SuprConfig.cs
15 строк
343 B
Timshin Mikhail
first commit
24 июн 2026, 14:52
24 июн 2026, 14:52
61ceede
Код
Авторство
О чём код?
using System.Text.Json.Serialization; namespace SuprTimeLogAutomation.Models; public class SuprConfig { [JsonPropertyName("BaseUrl")] public string BaseUrl { get; set; } [JsonPropertyName("Username")] public string Username { get; set; } [JsonPropertyName("Password")] public string Password { get; set; } }