15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
// Toasts/Structs/S_ToastMessage.ts
|
|
|
|
import type { Float } from '#root/UE/Float.ts';
|
|
import type { Integer } from '#root/UE/Integer.ts';
|
|
import type { Text } from '#root/UE/Text.ts';
|
|
import type { E_MessageType } from '#root/UI/Enums/E_MessageType.ts';
|
|
|
|
export interface S_ToastMessage {
|
|
ID: Integer;
|
|
Message: Text;
|
|
Type: E_MessageType;
|
|
Duration: Float;
|
|
CreatedTime: Float;
|
|
}
|