compose_sample/TestApplication/Context/Productphoto.cs

16 lines
309 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
public partial class Productphoto
{
public int Id { get; set; }
public int Productid { get; set; }
public string Photopath { get; set; } = null!;
public virtual Product Product { get; set; } = null!;
}