/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.0.11
src/Npgsql/BackendMessages/EmptyQueryMessage.cs
8 строк
253 B
Shay Rojansky
Apply file-scoped namespaces for 6.0 (#4298)
28 янв 2022, 15:13
Не верифицирован
28 янв 2022, 15:13
2e0ad2d
Код
Авторство
О чём код?
namespace Npgsql.BackendMessages; class EmptyQueryMessage : IBackendMessage { public BackendMessageCode Code => BackendMessageCode.EmptyQueryResponse; internal static readonly EmptyQueryMessage Instance = new(); EmptyQueryMessage() { } }