using System; using System.Collections.Generic; namespace ServiceApp.EnityModels; public partial class Product { public int Id { get; set; } public string Title { get; set; } = null!; public decimal Cost { get; set; } public string? Description { get; set; } public string? Mainimagepath { get; set; } public int Isactive { get; set; } public int? Manufacturerid { get; set; } public virtual Manufacturer? Manufacturer { get; set; } public virtual ICollection Productphotos { get; set; } = new List(); public virtual ICollection Productsales { get; set; } = new List(); public virtual ICollection Attachedproducts { get; set; } = new List(); public virtual ICollection Mainproducts { get; set; } = new List(); }