DemoService/Models/Servicephoto.cs
2024-09-05 16:11:39 +03:00

16 lines
304 B
C#

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