/
zykovad
/
PIR_Lab1_E-Library
Обзор
Документация
Войти
/
zykovad
/
PIR_Lab1_E-Library
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
DTO/Book_Response.cs
15 строк
439 B
Darya
almost done
09 окт 2025, 14:14
09 окт 2025, 14:14
075a2f4
Код
Авторство
О чём код?
namespace libraryAPI.DTO { public class Book_Response { public int Id { get; set; } public string Title { get; set; } public string ISBN { get; set; } public string Genre { get; set; } public string Description { get; set; } public int PublicationYear { get; set; } public string Publisher { get; set; } public List<string> Authors { get; set; } = new(); } }