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