19 lines
		
	
	
		
			415 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			415 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace MasaBlazorApp3.Pojo.Config
 | 
						|
{
 | 
						|
    public class DrawerConfig
 | 
						|
    {
 | 
						|
        public int[] single { get; set; }
 | 
						|
        public int[] weigh { get; set; }
 | 
						|
        public int[] box { get; set; }
 | 
						|
        public int[] label { get; set; }
 | 
						|
        public int[] returnDrawer { get; set; }
 | 
						|
 | 
						|
    }
 | 
						|
}
 |