7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
import { RedmineTypes } from '@app/event-emitter/models/redmine-types';
|
|
|
|
export type ChangeMessage = {
|
|
change_message?: string | null;
|
|
notification_message?: string | null;
|
|
recipient?: RedmineTypes.PublicUser | null;
|
|
};
|