react-native-moengage-inbox
Version:
Inbox Module for the MoEngage Platform
12 lines • 361 B
text/typescript
export default class MoETextContent {
title: string;
message: string;
summary?: string | undefined;
subtitle?: string | undefined;
constructor(title: string, message: string, summary: string | undefined, subtitle: string | undefined) {
this.title = title;
this.message = message;
this.summary = summary;
this.subtitle = subtitle;
}
}