using System; using System.Collections.Generic; namespace samusev_42; public partial class Category { public int IdCategory { get; set; } public string CategoryName { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }