Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
291B

  1. export class TopBrokerModel {
  2. Rank: number;
  3. Id: string;
  4. First: string;
  5. Last: string;
  6. Login: string;
  7. Organization: string;
  8. License: string;
  9. NumOfLoans: number;
  10. NumOfSettledLoans: number;
  11. NumOfUnSettledLoans: number;
  12. TotalReward: number;
  13. TotalLoanValue: number;
  14. }