compose_sample/TestApplication/Context/Documentbyservice1.cs

16 lines
336 B
C#

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
public partial class Documentbyservice1
{
public int Id { get; set; }
public int Clientserviceid { get; set; }
public string Documentpath { get; set; } = null!;
public virtual Clientservice Clientservice { get; set; } = null!;
}