22 lines
		
	
	
		
			374 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			374 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace DM_Weight.Models
 | 
						|
{
 | 
						|
    public class DrugPleaseManuNo
 | 
						|
    {
 | 
						|
        public string DrugId { get; set; }
 | 
						|
 | 
						|
        public string ManuNo { get; set; }
 | 
						|
 | 
						|
        public string EffDate { get; set; }
 | 
						|
 | 
						|
        public int Quantity { get; set; }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 |