Загрузка данных


namespace LibraryApp.Console.Models
{
    public class Book
    {
        public int Id { get; set; }
        public string Title { get; set; }
        public string Author { get; set; }
        public int Year { get; set; }
        public bool IsAvailable { get; set; } = true;

        public override string ToString()
        {
            string status = IsAvailable ? "В наличии" : "Выдана";
            return $"ID: {Id}, {Title}, {Author}, {Year}, {status}";
        }
    }
}