SMBServer v1.0.5

This commit is contained in:
Tal Aloni 2016-12-22 20:51:16 +02:00
parent b75820452d
commit bd1006cb81
400 changed files with 28062 additions and 0 deletions

18
SMBLibrary/Server/User.cs Normal file
View 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;
}
}
}