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.

16 lines
334B

  1. export class WsLoginEventModel{
  2. T: string;
  3. Mid: string;
  4. Sid: string;
  5. Uid: string;
  6. Role: string;
  7. constructor( payload: Partial<WsLoginEventModel>) {
  8. this.T = payload.T || '';
  9. this.Mid = payload.Mid || '';
  10. this.Sid = payload.Sid || '';
  11. this.Uid = payload.Uid || '';
  12. this.Role = payload.Uid || '';
  13. }
  14. }