Service/AvaloniaAppApplication/Models/Clientservice.cs
Guitaras_Fingerchpoker e5d1f72e7d first commit
2025-05-15 11:20:37 +03:00

24 lines
553 B
C#

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!;
}