Service/AvaloniaAppApplication/Models/Productsale.cs

22 lines
455 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 Productsale
{
public int Id { get; set; }
public DateTime Saledate { get; set; }
public int Productid { get; set; }
public int Quantity { get; set; }
public int? Clientserviceid { get; set; }
public virtual Clientservice? Clientservice { get; set; }
public virtual Product Product { get; set; } = null!;
}