Service/AvaloniaAppApplication/Models/Documentbyservice.cs

14 lines
270 B
C#
Raw Permalink Normal View History

2025-05-15 08:20:37 +00:00
using System;
using System.Collections.Generic;
namespace AvaloniaAppApplication.Models;
public partial class Documentbyservice
{
public int Id { get; set; }
public int Clientserviceid { get; set; }
public string Documentpath { get; set; } = null!;
}