Spaces:
Sleeping
Sleeping
Yuyuqt
feat: add user management, book management, categories management, membership management, and borrowing management
87c9973 | using System; | |
| using System.Collections.Generic; | |
| namespace Database.Models; | |
| public partial class Book | |
| { | |
| public int Id { get; set; } | |
| public string Title { get; set; } = null!; | |
| public string Isbn { get; set; } = null!; | |
| public string Author { get; set; } = null!; | |
| public string Status { get; set; } = null!; | |
| public bool IsActive { get; set; } | |
| public DateTime CreatedAt { get; set; } | |
| public string? Description { get; set; } | |
| public string? CoverUrl { get; set; } | |
| public int TotalCopies { get; set; } | |
| public int AvailableCopies { get; set; } | |
| public DateTime? UpdatedAt { get; set; } | |
| public virtual ICollection<Borrowing> Borrowings { get; set; } = new List<Borrowing>(); | |
| public virtual ICollection<Wishlist> Wishlists { get; set; } = new List<Wishlist>(); | |
| public virtual ICollection<Category> Categories { get; set; } = new List<Category>(); | |
| } | |