ghostfolio/libs/common/src/lib/interfaces/system-message.interface.ts
Thomas Kaul 12aac101bd
Feature/extend system message (#2628)
* Extend system message

* Update changelog
2023-11-09 19:23:36 +01:00

8 lines
200 B
TypeScript

import { SubscriptionType } from '@ghostfolio/common/types/subscription-type.type';
export interface SystemMessage {
message: string;
routerLink?: string[];
targetGroups: SubscriptionType[];
}