compose_sample/TestApplication/Context/ProductPhoto1.cs

16 lines
311 B
C#
Raw Permalink Normal View History

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!;
}