Product.cs 410 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Acosta.Models;
  4. public partial class Product
  5. {
  6. public int Productid { get; set; }
  7. public string Title { get; set; } = null!;
  8. public int Project { get; set; }
  9. public virtual ICollection<ProductReport> ProductReports { get; set; } = new List<ProductReport>();
  10. public virtual Project ProjectNavigation { get; set; } = null!;
  11. }