Last active
August 29, 2015 14:13
-
-
Save gregberns/365bb2545d236db2cd99 to your computer and use it in GitHub Desktop.
Platform Persistence
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IPlatformSaveService | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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