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.
19 lines
471 B
19 lines
471 B
import { NotificationReadState, NotificationSeverity } from "../types";
|
|
|
|
export interface GetNotificationPagedRequest extends PagedAndSortedResultRequestDto {
|
|
reverse?: boolean;
|
|
readState?: NotificationReadState;
|
|
}
|
|
|
|
export interface UserIdentifier {
|
|
userId: string;
|
|
userName?: string;
|
|
}
|
|
|
|
export interface NotificationSendDto {
|
|
name: string;
|
|
culture?: string;
|
|
toUsers?: UserIdentifier[];
|
|
severity?: NotificationSeverity;
|
|
data: Dictionary<string, any>;
|
|
}
|
|
|