mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 07:00:20 +00:00 
			
		
		
		
	Optimized documentation
This commit is contained in:
		
							parent
							
								
									da76be282b
								
							
						
					
					
						commit
						5c4103f859
					
				@ -25,23 +25,15 @@ public readonly record struct DataSourceERI_V1 : IERIDataSource
 | 
			
		||||
    /// <inheritdoc />
 | 
			
		||||
    public DataSourceType Type { get; init; } = DataSourceType.NONE;
 | 
			
		||||
    
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// The hostname of the ERI server.
 | 
			
		||||
    /// </summary>
 | 
			
		||||
    /// <inheritdoc />
 | 
			
		||||
    public string Hostname { get; init; } = string.Empty;
 | 
			
		||||
    
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// The port of the ERI server.
 | 
			
		||||
    /// </summary>
 | 
			
		||||
    /// <inheritdoc />
 | 
			
		||||
    public int Port { get; init; }
 | 
			
		||||
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// The authentication method to use.
 | 
			
		||||
    /// </summary>
 | 
			
		||||
    /// <inheritdoc />
 | 
			
		||||
    public AuthMethod AuthMethod { get; init; } = AuthMethod.NONE;
 | 
			
		||||
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// The username to use for authentication, when the auth. method is USERNAME_PASSWORD.
 | 
			
		||||
    /// </summary>
 | 
			
		||||
    /// <inheritdoc />
 | 
			
		||||
    public string Username { get; init; } = string.Empty;
 | 
			
		||||
}
 | 
			
		||||
@ -4,9 +4,23 @@ 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; }
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user