Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. public class pozycjeBOM
  3. {
  4. public int Id { get; set; }
  5. public int Root { get; set; }
  6. public string Name{ get; set; }
  7. public string Typ { get; set; }
  8. public double IloscPolproduktu { get; set; }
  9.  
  10. public List<pozycjeBOM> child{ get; set; }
  11. public pozycjeBOM()
  12. {
  13. child= new List<pozycjeBOM>();
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement