UNPKG

cordova-plugin-qonversion

Version:
14 lines (11 loc) 296 B
import {ExperimentGroupType} from "./enums"; export class ExperimentGroup { id: string; name: string; type: ExperimentGroupType; constructor(id: string, name: string, type: ExperimentGroupType) { this.id = id; this.name = name; this.type = type; } }