Moved the credential files into their own folder.

This commit is contained in:
antiduh
2014-06-19 15:25:45 +00:00
parent 52219057b7
commit d35db9d62a
8 changed files with 7 additions and 7 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
{
public class ServerCredential : Credential
{
public ServerCredential( SecurityPackage package ) : base( package, CredentialType.Server ) { }
}
}