Implemented ClientCredential - just a wrapper around Credential.

This commit is contained in:
antiduh
2014-06-19 21:09:36 +00:00
parent 241b2a596f
commit d7d552ad58

View File

@@ -6,7 +6,8 @@ using System.Threading.Tasks;
namespace NSspi
{
class ClientCredential
public class ClientCredential : Credential
{
public ClientCredential( SecurityPackage package ) : base( package, CredentialType.Client ) { }
}
}