Guest User

Untitled

a guest
Jun 17th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. ##works
  2. private int _id;
  3. private String _name;
  4. private SongsTags _songstags;
  5.  
  6.  
  7. public virtual int id
  8. {
  9. get { return this._id; }
  10. set { this._id = value; }
  11. }
  12.  
  13. public virtual String name
  14. {
  15. get { return this._name; }
  16. set { this._name = value; }
  17. }
  18.  
  19. public virtual SongsTags st
  20. {
  21. get { return this._songstags; }
  22. set { this._songstags = value; }
  23. }
  24.  
  25. ## does not work
  26.  
  27. public virtual int id { get; set; }
  28.  
  29. public virtual String name { get; set; }
  30.  
  31. public virtual SongsTags st { get; set; }
Add Comment
Please, Sign In to add comment