/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/lab-211-001/main.cs
16 строк
499 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public class Book { public int Id { get; set; } public string Title { get; set; } = string.Empty; public int Year { get; set; } public string ISBN { get; set; } = string.Empty; // Навигационные свойства public int AuthorId { get; set; } public Author Author { get; set; } = null!; public int GenreId { get; set; } public Genre Genre { get; set; } = null!; public ICollection<Loan> Loans { get; set; } = new List<Loan>(); }