Skip to content

Instantly share code, notes, and snippets.

@tgnm
Last active December 21, 2015 12:28
Show Gist options
  • Save tgnm/6305721 to your computer and use it in GitHub Desktop.
Save tgnm/6305721 to your computer and use it in GitHub Desktop.
Platform agnostic view interface
public interface ILoginView
{
string Username { get; set; }
string Password { get; set; }
bool RememberMe { get; }
event Action Login();
event Action Exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment