/Helpers/UserInformation.cs

https://github.com/cmath/SimpleLoginManager · C# · 30 lines · 25 code · 5 blank · 0 comment · 0 complexity · 2093cf6d931993f79e7f547982b370df MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.Composition;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Login.Helpers
  8. {
  9. [Export]
  10. public class UserInformation
  11. {
  12. private string userName_;
  13. private string password_;
  14. public string UserName
  15. {
  16. get { return userName_; }
  17. set { userName_ = value; }
  18. }
  19. public string Password
  20. {
  21. get { return password_; }
  22. set { password_ = value; }
  23. }
  24. }
  25. }