ServerManagers/Plugins/Discord/source/Plugin.Common/Lib/Profile.cs
Brett Hewitson 2df6f0cbaf New Fetch Profiles
Added a fetch profile method to the Common Plugin Helper.
2020-07-11 19:23:57 +10:00

8 lines
193 B
C#

namespace ServerManagerTool.Plugin.Common.Lib
{
public class Profile
{
public string ProfileName { get; set; }
public string InstallationFolder { get; set; }
}
}