zadanie/Demo1704/Models/Productphoto.cs
Guitaras_Fingerchpoker 914d43e042 first commit
2025-04-17 05:05:48 +03:00

16 lines
301 B
C#

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