Demo0704/Demo2/Models/Documentbyservice.cs
2025-04-11 11:18:41 +03:00

16 lines
324 B
C#

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