Advertisement
Guest User

Badge

a guest
Nov 22nd, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace FirstTry
  8. {
  9. class Badge
  10. {
  11. private int Id;
  12. private String Name;
  13. private String Text;
  14. private byte[] Picture;
  15.  
  16. public Badge(int Id, String Name, String Text, byte[] Picture)
  17. {
  18. this.Id = Id;
  19. this.Name = Name;
  20. this.Text = Text;
  21. this.Picture = Picture;
  22. }
  23.  
  24. public void AddBadge(User user)
  25. {
  26. //TODO add
  27. }
  28.  
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement