using System; using System.Collections.Generic; namespace Database.Models; public partial class Category { public int Id { get; set; } public string Name { get; set; } = null!; public virtual ICollection Books { get; set; } = new List(); }