Skip to content

Instantly share code, notes, and snippets.

@gregberns
Last active August 29, 2015 14:13
Show Gist options
  • Save gregberns/365bb2545d236db2cd99 to your computer and use it in GitHub Desktop.
Save gregberns/365bb2545d236db2cd99 to your computer and use it in GitHub Desktop.
Platform Persistence
public class Platform
{
public string Name { get; set; }
public string Server { get; set; }
public int Port { get; set; }
public string Username { get; set }
public string Password { get; set; }
}
public interface IPlatformSaveService
{
}
public class PlatformViewModel
{
public PlatformViewModel(IPlatformSaveService platformSaveService)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment