Merge "Fix to properties load for blueprints-processor"
[ccsdk/features.git] / sdnr / wt / odlux / framework / src / actions / authentication.ts
1 import { Action } from '../flux/action';
2
3 export class UpdateAuthentication extends Action {
4
5   constructor(public bearerToken: string | null) {
6     super();
7   }
8 }