mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
451 B
C#
16 lines
451 B
C#
using System.Collections.Generic;
|
|
using mRemoteNG.Credential;
|
|
using mRemoteNG.Credential.Repositories;
|
|
|
|
namespace mRemoteNG.UI.Forms
|
|
{
|
|
public class UnlockerFormFactory
|
|
{
|
|
public CompositeCredentialRepoUnlockerForm Build(IEnumerable<ICredentialRepository> repositories)
|
|
{
|
|
return new CompositeCredentialRepoUnlockerForm(
|
|
new CompositeRepositoryUnlocker(repositories)
|
|
);
|
|
}
|
|
}
|
|
} |