#region
|
|
using System.Collections.Generic;
|
using CSFrameworkV5.Interfaces.InterfaceModels;
|
|
#endregion
|
|
namespace CSFrameworkV5.Interfaces
|
{
|
public interface IBridge_AdvancedFilter
|
{
|
bool Delete(string account, string configName);
|
bool Exists(string account, string configName);
|
|
List<MyConfigData> GetConfig(string account);
|
|
bool Post(MyConfigData data);
|
}
|
}
|