demo/Demo/EntityModels/Productphoto.cs
2024-09-05 16:22:57 +03:00

16 lines
303 B
C#

using System;
using System.Collections.Generic;
namespace Demo.EntityModels;
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!;
}