using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Text; 
 | 
using System.Threading.Tasks; 
 | 
  
 | 
namespace WIDESEA_DTO.Stock 
 | 
{ 
 | 
    public class StockSelectViewDTO 
 | 
    { 
 | 
  
 | 
        public string MaterielCode { get; set; } 
 | 
  
 | 
        public string MaterielName { get; set; } 
 | 
  
 | 
        public float UseableQuantity { get; set; } 
 | 
  
 | 
        public string PalletCode { get; set; } 
 | 
  
 | 
        public string LocationCode { get; set; } 
 | 
    } 
 | 
} 
 |