HobbyProject/Source Code/main/UserAccount.cs
Im_Alpha d682c463a4 removed web app template and added main controller
initial main controller added
2021-12-10 02:07:02 -08:00

35 lines
609 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 UserAccount()
{
password = "1234";
role = "Regular";
}
public void newUser()
{
}
}
}