21 lines
		
	
	
		
			522 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			522 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace DM_Weight.Models
 | 
						|
{
 | 
						|
    [Serializable]
 | 
						|
    public class Invoice
 | 
						|
    {
 | 
						|
        public string InvoiceNo { get; set; }
 | 
						|
        public string InvoiceDate { get; set; }
 | 
						|
        public int Count { get; set; }
 | 
						|
        public int Quantity { get; set; }
 | 
						|
        public int Status { get; set; }
 | 
						|
        public string PharmacyName1 { get; set; }
 | 
						|
        public string PharmacyName2 { get; set; }
 | 
						|
    }
 | 
						|
}
 |