Advertisement
Guest User

Untitled

a guest
Oct 30th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. public class Account
  2. {
  3.     public string UserName { get; set; }
  4.     public string Password { get; set; }
  5.  
  6.     public Account(string userName, string password)
  7.     {
  8.         this.UserName = userName;
  9.         this.Password = password;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement