-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubResult.cs
27 lines (26 loc) · 958 Bytes
/
SubResult.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Baykus {
public class SubResult {
public string country = "!NA!";
public string organization = "!NA!";
public string severity = "!NA!";
public string errorMess = "!NA!";
public string error = "!NA!";
public string apiName = "ip-api";
public SubResult(string apiName = "!NA!", string country = "!NA!", string organiz = "!NA!", string severity = "!NA!", string error = "!NA!", string errorMess = "!NA!") {
this.apiName = apiName;
this.country = country;
this.organization = organiz;
this.severity = severity;
this.error = error;
this.errorMess = errorMess;
}
public string[] ToArray() {
return new string[]{ };
}
}
}