-
Notifications
You must be signed in to change notification settings - Fork 164
/
csharp.cs
71 lines (50 loc) · 1.82 KB
/
csharp.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
namespace BancosBrasileiros
{
using System;
using Newtonsoft.Json;
public class Bank
{
[JsonProperty("COMPE")]
public string Compe { get; set; }
[JsonProperty("ISPB")]
public string Ispb { get; set; }
[JsonProperty("Document")]
public string Document { get; set; }
[JsonProperty("LongName")]
public string LongName { get; set; }
[JsonProperty("ShortName")]
public string ShortName { get; set; }
[JsonProperty("Network")]
public string Network { get; set; }
[JsonProperty("Type")]
public string Type { get; set; }
[JsonProperty("PixType")]
public string PixType { get; set; }
[JsonProperty("Charge")]
public bool? Charge { get; set; }
[JsonProperty("CreditDocument")]
public bool? CreditDocument { get; set; }
[JsonProperty("LegalCheque")]
public bool LegalCheque { get; set; }
[JsonProperty("DetectaFlow")]
public bool DetectaFlow { get; set; }
[JsonProperty("PCR")]
public bool Pcr { get; set; }
[JsonProperty("PCRP")]
public bool Pcrp { get; set; }
[JsonProperty("SalaryPortability")]
public string SalaryPortability { get; set; }
[JsonProperty("Products")]
public string[] Products { get; set; }
[JsonProperty("Url")]
public string Url { get; set; }
[JsonProperty("DateOperationStarted")]
public string DateOperationStarted { get; set; }
[JsonProperty("DatePixStarted")]
public string DatePixStarted { get; set; }
[JsonProperty("DateRegistered")]
public DateTimeOffset DateRegistered { get; set; }
[JsonProperty("DateUpdated")]
public DateTimeOffset DateUpdated { get; set; }
}
}