Advertisement
Guest User

Untitled

a guest
May 7th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // This is the code that is auto generated
  2. public partial class loginCollectionlogin{
  3. private string _username;
  4. private string _password;
  5. public string username{
  6. get { return _username; }
  7. set { _username = value; }
  8. }
  9. public string password{
  10. get { return _password; }
  11. set { _password = value; }
  12. }
  13. }
  14. // end generated
  15.  
  16. // File 1
  17. public interface ILogin{
  18. string username {get;set;}
  19. string password {get;set;}
  20. }
  21.  
  22. public partial class loginCollectionLogin : ILogin {}
  23. // end file 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement