mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-25 18:38:14 +02:00
SMBServer v1.0.5
This commit is contained in:
parent
b75820452d
commit
bd1006cb81
400 changed files with 28062 additions and 0 deletions
18
SMBLibrary/Server/User.cs
Normal file
18
SMBLibrary/Server/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