Skip to content

Commit

Permalink
#v3.2.2001.0-rc - ERC20 added to models (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Buedo authored Dec 27, 2019
1 parent 1e1de5f commit bd279b2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions BitPay/Models/Invoice/MinerFees.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ public class MinerFees
public MinerFeesItem Btc { get; set; }
public MinerFeesItem Bch { get; set; }
public MinerFeesItem Eth { get; set; }
public MinerFeesItem Usdc { get; set; }
public MinerFeesItem Gusd { get; set; }
public MinerFeesItem Pax { get; set; }
}
}
2 changes: 2 additions & 0 deletions BitPay/Models/Invoice/PaymentCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ public class PaymentCode
{
public string Bip72b { get; set; }
public string Bip73 { get; set; }
public string Eip681 { get; set; }
public string Eip681b { get; set; }
}
}
3 changes: 3 additions & 0 deletions BitPay/Models/Invoice/PaymentCodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ public class PaymentCodes
public PaymentCode Btc { get; set; }
public PaymentCode Bch { get; set; }
public PaymentCode Eth { get; set; }
public PaymentCode Usdc { get; set; }
public PaymentCode Gusd { get; set; }
public PaymentCode Pax { get; set; }
}
}
3 changes: 3 additions & 0 deletions BitPay/Models/Invoice/PaymentTotal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ public class PaymentTotal
public double Btc { get; set; }
public double Bch { get; set; }
public double Eth { get; set; }
public double Usdc { get; set; }
public double Gusd { get; set; }
public double Pax { get; set; }
}
}
3 changes: 3 additions & 0 deletions BitPay/Models/Invoice/SupportedTransactionCurrencies.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ public class SupportedTransactionCurrencies
public SupportedTransactionCurrency Btc { get; set; }
public SupportedTransactionCurrency Bch { get; set; }
public SupportedTransactionCurrency Eth { get; set; }
public SupportedTransactionCurrency Usdc { get; set; }
public SupportedTransactionCurrency Gusd { get; set; }
public SupportedTransactionCurrency Pax { get; set; }
}
}

0 comments on commit bd279b2

Please sign in to comment.