mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 21:49:06 +00:00
12 lines
244 B
C#
12 lines
244 B
C#
|
using ERI_Client.V1;
|
||
|
|
||
|
namespace AIStudio.Settings;
|
||
|
|
||
|
public interface IERIDataSource : IExternalDataSource
|
||
|
{
|
||
|
public string Hostname { get; init; }
|
||
|
|
||
|
public int Port { get; init; }
|
||
|
|
||
|
public AuthMethod AuthMethod { get; init; }
|
||
|
}
|