Newer
Older
CitrusClient / app / src / main / java / com / example / citrusclient / models / Schedule.java
t-watanabe on 26 Sep 932 bytes カレンダー完成
package com.example.citrusclient.models;

public class Schedule extends Task{

    private String startTime;
    private String endTime;
    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 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 getScheduleId() {
        return scheduleId;
    }

    public void setScheduleId(int scheduleId) {
        this.scheduleId = scheduleId;
    }
}