17 lines
364 B
C#
17 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pos.Json
|
|
{
|
|
public class ProductModel
|
|
{
|
|
public string product { get; set; }
|
|
public string noOfProduct { get; set; }
|
|
public float price { get; set; }
|
|
public float totalPrice { get; set; }
|
|
}
|
|
}
|