mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-11 19:29:06 +00:00
12 lines
265 B
C#
12 lines
265 B
C#
using AIStudio.Tools.ERIClient.DataModel;
|
|
|
|
namespace AIStudio.Settings;
|
|
|
|
public interface IERIDataSource : IExternalDataSource
|
|
{
|
|
public string Hostname { get; init; }
|
|
|
|
public int Port { get; init; }
|
|
|
|
public AuthMethod AuthMethod { get; init; }
|
|
} |