// SshPasswordCredential.credentials.ts
import { ICredentialType, INodeProperties } from 'n8n-workflow';

export class SshPasswordCredential implements ICredentialType {
	name = 'sshPassword';
	displayName = 'SSH Password';
	documentationUrl = '';
	properties: INodeProperties[] = [
		{
			displayName: 'Username',
			name: 'username',
			type: 'string',
			default: '',
		},
		{
			displayName: 'Password',
			name: 'password',
			type: 'string',
			typeOptions: {
				password: true,
			},
			default: '',
		},
	];
}
