16 lines
336 B
C#
16 lines
336 B
C#
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!;
|
|
}
|