sample_demo/ServiceApp/EntityModels/Documentbyservice.cs

16 lines
334 B
C#
Raw Permalink Normal View History

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