Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 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 TPEvilCorp
  8. {
  9. class Action
  10. {
  11. private String name;
  12.  
  13. public Action(String name)
  14. {
  15. this.name = name;
  16. }
  17.  
  18. public String getName()
  19. {
  20. return name;
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement