16 lines
358 B
C#
16 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pos.Models
|
|
{
|
|
public class TotalSaleCategory
|
|
{
|
|
public string Category { get; set; } = string.Empty;
|
|
public decimal Sale { get; set; }
|
|
public string SaleString { get; set; } = string.Empty;
|
|
}
|
|
}
|