/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/lab-15-003/main.cs
25 строк
531 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
using Система; using Система.Collections.Generic; using Система.Xml.Serialization; [XmlRoot("Library")] public class Library { [XmlElement("Book")] public List<Book> Books { get; set; } = new(); } public class Book { [XmlAttribute("id")] public int Id { get; set; } [XmlElement("Title")] public string Title { get; set; } = string.Empty; [XmlElement("Author")] public string Author { get; set; } = string.Empty; [XmlElement("Year")] public int Year { get; set; } }