UNPKG

react-native-moengage-inbox

Version:

Inbox Module for the MoEngage Platform

10 lines (9 loc) 233 B
import { MoEMediaType } from "./MoEMediaType"; export default class MoEMedia { mediaType: MoEMediaType; url: string; constructor(mediaType: MoEMediaType, url: string) { this.mediaType = mediaType; this.url = url; } }