18 lines
		
	
	
		
			463 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			463 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Adaptation.FileHandlers.TIBCO.Transport;
 | 
						|
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public class WorkMaterialOut
 | 
						|
{
 | 
						|
 | 
						|
    public string? Layer { get; set; }
 | 
						|
    public string? PSN { get; set; }
 | 
						|
    public string? Pocket { get; set; }
 | 
						|
    public int? Reactor { get; set; }
 | 
						|
    public string? RunDataSheet { get; set; }
 | 
						|
    public string? Scan { get; set; }
 | 
						|
    public int? SlotNumber { get; set; }
 | 
						|
    public string? Username { get; set; }
 | 
						|
    public string? Zone { get; set; }
 | 
						|
 | 
						|
} |