using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class ProductPhoto1 { public int Id { get; set; } public int ProductId { get; set; } public string PhotoPath { get; set; } = null!; public virtual Product1 Product { get; set; } = null!; }