HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.UserManagement/UserAccount.cs
2021-12-11 23:42:27 -08:00

35 lines
618 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace main
{
public class UserAccount
{
/* private string username;
private string password;
private string role;
public UserAccount(string un,string pwd,string rol)
{
username = un;
password = pwd;
role = rol;
}
public void UserAccount()
{
password = "1234";
role = "Regular";
}
public void newUser()
{
}*/
}
}