mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-04-30 02:37:49 +02:00
18 lines
369 B
C#
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;
|
|
}
|
|
}
|
|
}
|