package com.tech.grobinson.totalgymtracker class PastWorkoutsModel { var date: String? = null var incline: Int? = null var machineName: String? = null var setNums: Int? = null var repNums: Int? = null var bodyWeight: Float? = null var glideBoard: Int? = null var slope: Float? = null constructor() constructor(date: String, incline: Int, machineName: String, setNums: Int, repNums: Int, bodyWeight: Float, glideBoard: Int, slope: Float): this() { this.date = date this.incline = incline this.machineName = machineName this.setNums = setNums this.repNums = repNums this.bodyWeight = bodyWeight this.glideBoard = glideBoard this.slope = slope } }