Demo0704/Demo2/Models/Productphoto.cs
2025-04-11 11:18:41 +03:00

16 lines
298 B
C#

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