Service/AvaloniaAppApplication/Models/Servicephoto.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 Servicephoto
{
public int Id { get; set; }
public int Serviceid { get; set; }
public string Photopath { get; set; } = null!;
public virtual Service Service { get; set; } = null!;
}