New Fetch Profiles

Added a fetch profile method to the Common Plugin Helper.
This commit is contained in:
Brett Hewitson 2020-07-11 19:23:57 +10:00
parent 0cdd760a48
commit 2df6f0cbaf
4 changed files with 36 additions and 1 deletions

View file

@ -0,0 +1,8 @@
namespace ServerManagerTool.Plugin.Common.Lib
{
public class Profile
{
public string ProfileName { get; set; }
public string InstallationFolder { get; set; }
}
}