Still working on the base implementation.

This commit is contained in:
antiduh
2014-06-18 22:07:56 +00:00
parent 87692b3cc6
commit 22c6a5d3f9
4 changed files with 33 additions and 4 deletions

15
CredentialUse.cs Normal file
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 : int
{
Inbound = 1,
Outbound = 2,
Both = 3,
}
}