blob: a29c2866b02fe1a1075d59045459e154ac211354 [file] [log] [blame]
using System.Collections.Generic;
namespace Apache
{
namespace Geode
{
namespace DotNetCore
{
public interface IAuthInitialize
{
Dictionary<string, string> GetCredentials();
void Close();
}
}
}
}