Service/AvaloniaAppApplication/Models/Servicephoto.cs

16 lines
315 B
C#
Raw Normal View History

2025-05-15 08:20:37 +00:00
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!;
}