File tree Expand file tree Collapse file tree 5 files changed +22
-5
lines changed
SSLLWrapper/Models/Response Expand file tree Collapse file tree 5 files changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -20,5 +20,10 @@ public class Endpoint
20
20
21
21
public Details Details { get ; set ; }
22
22
23
+ public Endpoint ( )
24
+ {
25
+ Details = new Details ( ) ;
26
+ }
27
+
23
28
}
24
29
}
Original file line number Diff line number Diff line change @@ -6,5 +6,10 @@ public class Chain
6
6
{
7
7
public List < Cert2 > certs { get ; set ; }
8
8
public int issues { get ; set ; }
9
+
10
+ public Chain ( )
11
+ {
12
+ certs = new List < Cert2 > ( ) ;
13
+ }
9
14
}
10
15
}
Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
- using System . Text ;
5
- using System . Threading . Tasks ;
1
+ using System . Collections . Generic ;
6
2
7
3
namespace SSLLWrapper . Models . Response . EndpointSubModels
8
4
{
@@ -40,6 +36,7 @@ public Details()
40
36
key = new Key ( ) ;
41
37
cert = new Cert ( ) ;
42
38
chain = new Chain ( ) ;
39
+ protocols = new List < Protocol > ( ) ;
43
40
suites = new Suites ( ) ;
44
41
sims = new Sims ( ) ;
45
42
}
Original file line number Diff line number Diff line change @@ -5,5 +5,10 @@ namespace SSLLWrapper.Models.Response.EndpointSubModels
5
5
public class Sims
6
6
{
7
7
public List < Result > results { get ; set ; }
8
+
9
+ public Sims ( )
10
+ {
11
+ results = new List < Result > ( ) ;
12
+ }
8
13
}
9
14
}
Original file line number Diff line number Diff line change @@ -6,5 +6,10 @@ public class Suites
6
6
{
7
7
public List < List > list { get ; set ; }
8
8
public bool preference { get ; set ; }
9
+
10
+ public Suites ( )
11
+ {
12
+ list = new List < List > ( ) ;
13
+ }
9
14
}
10
15
}
You can’t perform that action at this time.
0 commit comments