/
d.alekseev
/
SmartMenuBot
Обзор
Документация
Войти
/
d.alekseev
/
SmartMenuBot
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ConsoleBot/Core/Services/Domain/VersionInfoService.cs
17 строк
416 B
daleksCoder
Старт ДЗ
#7
10 май 2025, 10:59
10 май 2025, 10:59
7a20812
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SmartMenuBot.Core.Services.Domain { public static class VersionInfoService { public static void GetVersionInfo(out string version, out DateTime creationDate) { version = "2.0.2"; creationDate = new DateTime(2025, 5, 10); } } }