forked from zachtaylor1/SWProj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.cs
More file actions
30 lines (30 loc) · 900 Bytes
/
User.cs
File metadata and controls
30 lines (30 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SWProjv1
{
public class User
{
private String username;
private String password;
public String firstName { get; set; }
public String lastName { get; set; }
public String otherName { get; set; }
public String DOB { get; set; }
public static String userID { get; set; }
public User()
{
}
public User(String firstName, String lastname, String otherName, String username, String password, String DOB)
{
this.firstName = firstName;
this.lastName = lastName;
this.otherName = otherName;
this.username = username;
this.password = password;
this.DOB = DOB;
}
}
}