DemoService/Models/Documentbyservice.cs

16 lines
330 B
C#
Raw Normal View History

2024-09-05 13:11:39 +00:00
using System;
using System.Collections.Generic;
namespace DemoService.Models;
public partial class Documentbyservice
{
public int Id { get; set; }
public int Clientserviceid { get; set; }
public string Documentpath { get; set; } = null!;
public virtual Clientservice Clientservice { get; set; } = null!;
}