using System; using System.Collections.Generic; namespace Acosta.Models; public partial class Product { public int Productid { get; set; } public string Title { get; set; } = null!; public int Project { get; set; } public virtual ICollection ProductReports { get; set; } = new List(); public virtual Project ProjectNavigation { get; set; } = null!; }