f118635029
Added inventory and sales api endpoints
17 lines
393 B
C#
17 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RMDataManagerLibrary.Models
|
|
{
|
|
public class InventoryModel
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int Quantity { get; set; }
|
|
public decimal PurchasePrice { get; set; }
|
|
public DateTime PurchaseDate { get; set; }
|
|
}
|
|
}
|