UNPKG

react-native-moengage-cards

Version:

Cards Module for the MoEngage Platform

27 lines (23 loc) 457 B
/** * Time span during card can be shown * * @author Abhishek Kumar * @since 1.0.0 */ class ShowTime { /** * Start time for the time range. * @since 1.0.0 */ startTime: string; /** * End time for the time range. * @since 1.0.0 */ endTime: string; constructor(startTime: string, endTime: string) { this.startTime = startTime; this.endTime = endTime; } } export default ShowTime;