mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-10-31 18:00:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			670 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			670 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using AIStudio.Tools.ERIClient.DataModel;
 | |
| 
 | |
| namespace AIStudio.Settings;
 | |
| 
 | |
| public interface IERIDataSource : IExternalDataSource
 | |
| {
 | |
|     /// <summary>
 | |
|     /// The hostname of the ERI server.
 | |
|     /// </summary>
 | |
|     public string Hostname { get; init; }
 | |
|     
 | |
|     /// <summary>
 | |
|     /// The port of the ERI server.
 | |
|     /// </summary>
 | |
|     public int Port { get; init; }
 | |
|     
 | |
|     /// <summary>
 | |
|     /// The authentication method to use.
 | |
|     /// </summary>
 | |
|     public AuthMethod AuthMethod { get; init; }
 | |
|     
 | |
|     /// <summary>
 | |
|     /// The username to use for authentication, when the auth. method is USERNAME_PASSWORD.
 | |
|     /// </summary>
 | |
|     public string Username { get; init; }
 | |
| } |