demo/Demo/EntityModels/Documentbyservice.cs
2024-09-05 16:22:57 +03:00

16 lines
329 B
C#

using System;
using System.Collections.Generic;
namespace Demo.EntityModels;
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!;
}