mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-25 19:38:37 +08:00
17 lines
440 B
C#
17 lines
440 B
C#
using System;
|
|
|
|
namespace mRemoteNG.Credential.Repositories
|
|
{
|
|
public class CredentialRepositoryChangedArgs : EventArgs
|
|
{
|
|
public ICredentialRepository Repository { get; }
|
|
|
|
public CredentialRepositoryChangedArgs(ICredentialRepository repository)
|
|
{
|
|
if (repository == null)
|
|
throw new ArgumentNullException(nameof(repository));
|
|
|
|
Repository = repository;
|
|
}
|
|
}
|
|
} |