-
-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathAuthenticationSystem.cs
52 lines (44 loc) · 1.05 KB
/
AuthenticationSystem.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
public class Authenticator
{
private class EyeColor
{
public string Blue = "blue";
public string Green = "green";
public string Brown = "brown";
public string Hazel = "hazel";
public string Grey = "grey";
}
public Authenticator(Identity admin)
{
this.admin = admin;
}
private Identity admin;
private IDictionary<string, Identity> developers
= new Dictionary<string, Identity>
{
["Bertrand"] = new Identity
{
Email = "[email protected]",
EyeColor = "blue"
},
["Anders"] = new Identity
{
Email = "[email protected]",
EyeColor = "brown"
}
};
public Identity Admin
{
get { return admin; }
set { admin = value; }
}
public IDictionary<string, Identity> GetDevelopers()
{
return developers;
}
}
public struct Identity
{
public string Email { get; set; }
public string EyeColor { get; set; }
}