package com.example.citrusclient.models; public class Schedule { private String title; private String startTime; private String endTime; private int bookId; private int scheduleId; public Schedule(){} public Schedule(String title, String startTime, String endTime, int bookId, int scheduleId){ this.title = title; this.startTime = startTime; this.endTime = endTime; this.bookId = bookId; this.scheduleId = scheduleId; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getStartTime() { return startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public int getBookId() { return bookId; } public void setBookId(int bookId) { this.bookId = bookId; } public int getScheduleId() { return scheduleId; } public void setScheduleId(int scheduleId) { this.scheduleId = scheduleId; } }