Guest User

Untitled

a guest
Nov 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public class Notification
  2. {
  3. public string Key { get; }
  4. public string Message { get; }
  5.  
  6. public Notification(string key, string message)
  7. {
  8. Key = key;
  9. Message = message;
  10. }
  11. }
Add Comment
Please, Sign In to add comment