Advertisement
Guest User

Untitled

a guest
Oct 30th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. public class Account
  2. {
  3.     public string UserName { get; private set; }
  4.     public string Password { get; private 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