mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
12 lines
314 B
C#
12 lines
314 B
C#
using System.Collections.Generic;
|
|
|
|
namespace mRemoteNG.Credential.Repositories
|
|
{
|
|
public class CredentialRepoUnlockerBuilder
|
|
{
|
|
public CompositeRepositoryUnlocker Build(IEnumerable<ICredentialRepository> repos)
|
|
{
|
|
return new CompositeRepositoryUnlocker(repos);
|
|
}
|
|
}
|
|
} |