SMBLibrary/SMBServer/User.cs
2017-02-17 19:01:58 +02:00

18 lines
369 B
C#

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;
}
}
}