compose_sample/TestApplication/Context/DocumentByService.cs

16 lines
336 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
public partial class DocumentByService
{
public int Id { get; set; }
public int ClientServiceId { get; set; }
public string DocumentPath { get; set; } = null!;
public virtual ClientService1 ClientService { get; set; } = null!;
}