f118635029
Added inventory and sales api endpoints
20 lines
525 B
C#
20 lines
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RMDataManagerLibrary.Models
|
|
{
|
|
public class SaleReportModel
|
|
{
|
|
public DateTime SaleDate { get; set; }
|
|
public decimal SubTotal { get; set; }
|
|
public decimal Tax { get; set; }
|
|
public decimal Total { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string EmailAddress { get; set; }
|
|
}
|
|
}
|