-
Notifications
You must be signed in to change notification settings - Fork 7
/
Variables.cs
55 lines (51 loc) · 1.46 KB
/
Variables.cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Web;
namespace WiselySplit
{
public class Variables
{
public static string connStr = ConfigurationManager.ConnectionStrings["dbconnect"].ConnectionString;
public struct User {
public string uname;
public string pass;
public string email;
public string question;
public string answer;
public User(string uname, string pass, string email, string question, string answer)
{
this.uname = uname;
this.pass = pass;
this.email = email;
this.question = question;
this.answer = answer;
}
public string Name {
get { return uname; }
set { uname = value; }
}
public string Password
{
get { return pass; }
set { pass = value; }
}
public string Email
{
get { return email; }
set { email = value; }
}
public string Question
{
get { return question; }
set { question = value; }
}
public string Answer
{
get { return answer; }
set { answer = value; }
}
}
}
}