18 lines
426 B
C#
18 lines
426 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace RMDataManagerLibrary.Models
|
|||
|
{
|
|||
|
public class SaleDetailDBModel
|
|||
|
{
|
|||
|
public int SaleId { get; set; }
|
|||
|
public int ProductId { get; set; }
|
|||
|
public int Quantity { get; set; }
|
|||
|
public decimal PurchasePrice { get; set; }
|
|||
|
public decimal Tax { get; set; }
|
|||
|
}
|
|||
|
}
|