@@ -16,48 +16,48 @@ public GenderApiNameResponse(Exception exception)
16
16
/// <summary>
17
17
/// Submitted name in lower case
18
18
/// </summary>
19
- public string Name { get ; }
19
+ public string Name { get ; set ; }
20
20
21
21
/// <summary>
22
22
/// The name after we applied our normalizer to it
23
23
/// </summary>
24
24
[ JsonProperty ( "Name_Sanitized" ) ]
25
- public string NameSanitized { get ; }
25
+ public string NameSanitized { get ; set ; }
26
26
27
27
/// <summary>
28
28
/// Submitted country code
29
29
/// </summary>
30
- public string Country { get ; }
30
+ public string Country { get ; set ; }
31
31
32
32
public CountryType CountryType => CountryType . ParseOrDefault ( Country , CountryType . Unknown ) ;
33
33
34
34
/// <summary>
35
35
/// Possible values: male, female, unknown
36
36
/// </summary>
37
- public string Gender { get ; }
37
+ public string Gender { get ; set ; }
38
38
39
39
[ JsonIgnore ]
40
40
public GenderType GenderType => GenderType . ParseOrDefault ( Gender , GenderType . Unkown ) ;
41
41
42
42
/// <summary>
43
43
/// Number of records found in our database which match your request
44
44
/// </summary>
45
- public int Sample { get ; }
45
+ public int Sample { get ; set ; }
46
46
47
47
/// <summary>
48
48
/// This value determines the reliability of our database. A value of 100 means that the results on your gender request are 100% accurate
49
49
/// </summary>
50
- public int Accuracy { get ; }
50
+ public int Accuracy { get ; set ; }
51
51
52
52
/// <summary>
53
53
/// Time the server needed to process the request
54
54
/// </summary>
55
- public string Duration { get ; }
55
+ public string Duration { get ; set ; }
56
56
57
57
/// <summary>
58
58
/// The amount of credits used for this query
59
59
/// </summary>
60
60
[ JsonProperty ( "Credits_Used" ) ]
61
- public int CreditsUsed { get ; }
61
+ public int CreditsUsed { get ; set ; }
62
62
}
63
63
}
0 commit comments