/
plug1at
/
Personal_Digital_Library
Обзор
Документация
Войти
/
plug1at
/
Personal_Digital_Library
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
DigitalLibrary.Core/Models/Book.cs
23 строки
827 B
plug1at
Create: Class1.cs, DigitalLibrary.Core.csproj, Book.cs, BookMetadata.cs, Category.cs, IMetadataExtractor.cs, MetadataExtractor.cs
10 июн 2026, 11:29
Верифицирован
10 июн 2026, 11:29
3d83fbe
Код
Авторство
О чём код?
namespace DigitalLibrary.Core.Models { public class Book { public int Id { get; set; } public string Title { get; set; } = string.Empty; public string Author { get; set; } = string.Empty; public string FilePath { get; set; } = string.Empty; public string Format { get; set; } = string.Empty; public long FileSize { get; set; } public DateTime AddedDate { get; set; } public bool IsRead { get; set; } public bool InTbrList { get; set; } public int? CategoryId { get; set; } public Category? Category { get; set; } public ICollection<BookMetadata> Metadata { get; set; } = new List<BookMetadata>(); public string? FullText { get; set; } public byte[]? CoverImage { get; set; } } }