mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-03 08:13:18 +02:00
Improved NTLM authentication API
This commit is contained in:
parent
05f49c3128
commit
217451d18f
23 changed files with 602 additions and 526 deletions
18
SMBServer/User.cs
Normal file
18
SMBServer/User.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SMBLibrary.Server
|
||||
{
|
||||
public class User
|
||||
{
|
||||
public string AccountName;
|
||||
public string Password;
|
||||
|
||||
public User(string accountName, string password)
|
||||
{
|
||||
AccountName = accountName;
|
||||
Password = password;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue