-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEOSDevice.cs
47 lines (40 loc) · 1.22 KB
/
EOSDevice.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
using System;
using System.Collections.Generic;
namespace hacknet_viewer {
public class EOSDevice {
public string name { get; set; }
public string id { get; set; }
public string icon { get; set; }
public bool empty { get; set; } // Might mean it doesn't autofill?
public string passOverride { get; set; }
public List<Mail> mail { get; set; }
public List<File> files { get; set; }
public EOSDevice(string name, string id) {
this.name = name;
this.id = id;
this.icon = "ePhone3";
this.empty = false;
this.passOverride = "";
this.mail = new List<Mail>();
this.files = new List<File>();
}
public override string ToString() {
string mailString = "";
foreach(Mail m in mail) {
mailString += "username: " + m.username + "\npassword: " + m.pass + "\n";
}
string fileString = "";
foreach(File f in files) {
fileString += f + "\n";
}
return "<" + this.id + " (eOSDevice)" +
"\nname: " + this.name +
"\nicon: " + this.icon +
"\nempty: " + this.empty +
"\npassword override: " + this.passOverride +
"\nmail accounts: " + mailString.Trim() +
"\nfiles: " + fileString.Trim() +
">";
}
}
}