Service/AvaloniaAppApplication/Models/Productphoto.cs
Guitaras_Fingerchpoker e5d1f72e7d first commit
2025-05-15 11:20:37 +03:00

16 lines
315 B
C#

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