/Helpers/UserInformation.cs
https://github.com/cmath/SimpleLoginManager · C# · 30 lines · 25 code · 5 blank · 0 comment · 0 complexity · 2093cf6d931993f79e7f547982b370df MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.Composition;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Login.Helpers
- {
- [Export]
- public class UserInformation
- {
- private string userName_;
- private string password_;
- public string UserName
- {
- get { return userName_; }
- set { userName_ = value; }
- }
- public string Password
- {
- get { return password_; }
- set { password_ = value; }
- }
- }
- }