10 lines
		
	
	
		
			354 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			354 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Adaptation.FileHandlers.TIBCO.Transport;
 | 
						|
 | 
						|
public class Item
 | 
						|
{
 | 
						|
    public string Name { get; set; } //WaferLot //UniqueID
 | 
						|
    public string Type { get; set; } //SatelliteGroup //Sort
 | 
						|
    public string Number { get; set; } //PocketNumber //Slot
 | 
						|
    public string Qty { get; set; } //1
 | 
						|
    public string CarrierName { get; set; } //PROCESS_GROUP
 | 
						|
} |