Reorganized the project to put the library one folder down.

This commit is contained in:
antiduh
2014-06-27 14:38:28 +00:00
parent ffb7e36edb
commit c1b7785440
40 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NSspi.Credentials
{
public class ClientCredential : Credential
{
public ClientCredential( SecurityPackage package ) : base( package, CredentialType.Client ) { }
}
}