using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class Product1 { 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 bool IsActive { get; set; } public int? ManufacturerId { get; set; } public virtual Manufacturer1? Manufacturer { get; set; } public virtual ICollection ProductPhoto1s { get; set; } = new List(); public virtual ICollection ProductSale1s { get; set; } = new List(); public virtual ICollection AttachedProducts { get; set; } = new List(); public virtual ICollection MainProducts { get; set; } = new List(); }