Advertisement
Guest User

Untitled

a guest
Feb 15th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. public class Item
  2. {
  3.     public int id { get; set; }
  4.     public string name { get; set; }
  5.     public string price { get; set; }
  6.     public string amount { get; set; }
  7. }
  8.  
  9. public class Imbuement
  10. {
  11.     public int id { get; set; };
  12.     public string name { get; set; }
  13.     public Item[] items{ get; set; }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement