ServerManagers/Plugins/Discord/source/Plugin.Common/Delegates/FetchProfilesDelegate.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

7 lines
197 B
C#

using ServerManagerTool.Plugin.Common.Lib;
using System.Collections.Generic;
namespace ServerManagerTool.Plugin.Common.Delegates
{
public delegate IList<Profile> FetchProfilesDelegate();
}