compose_sample/TestApplication/Context/Servicephoto1.cs

16 lines
311 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
public partial class Servicephoto1
{
public int Id { get; set; }
public int Serviceid { get; set; }
public string Photopath { get; set; } = null!;
public virtual Service1 Service { get; set; } = null!;
}