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.

18 lines
227B

  1. export class PayoutAudit{
  2. id: string;
  3. //parent
  4. payOut: string;
  5. //date
  6. when : Date;
  7. //by who, at least 2
  8. who : string ;
  9. //for what? edit? paid?
  10. what: string;
  11. //ip
  12. ip: string;
  13. }