Replacement for JDIS Importer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Part.cs 289 B

il y a 3 ans
123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace jdis_import
  6. {
  7. public class Part
  8. {
  9. public string Qty { get; set; }
  10. public string Number { get; set; }
  11. public string Description { get; set; }
  12. }
  13. }