class UserProgress { UserProgress({ this.lastEpId, }); int? lastEpId; UserProgress.fromJson(Map json) { lastEpId = json['last_ep_id']; } }