Service/AvaloniaAppApplication/Models/Clientservice.cs

24 lines
553 B
C#
Raw Normal View History

2025-05-15 08:20:37 +00:00
using System;
using System.Collections.Generic;
namespace AvaloniaAppApplication.Models;
public partial class Clientservice
{
public int Id { get; set; }
public int Clientid { get; set; }
public int Serviceid { get; set; }
public string Starttime { get; set; } = null!;
public string? Comment { get; set; }
public virtual Client Client { get; set; } = null!;
public virtual ICollection<Productsale> Productsales { get; set; } = new List<Productsale>();
public virtual Service Service { get; set; } = null!;
}