// This file has been auto generated by EF Core Power Tools. #nullable disable using System; using System.Collections.Generic; namespace Pos.Api.Database.Models; public partial class SaleLine { public int Id { get; set; } public int SaleId { get; set; } public string Product { get; set; } public short Pieces { get; set; } public decimal Price { get; set; } public decimal Total { get; set; } }