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,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NSspi
{
public enum CredentialUse : uint
{
Inbound = 1,
Outbound = 2,
Both = 3,
}
}