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

import android.content.pm.LauncherApps;

public class Task {
    int bookId;
    String title;

    public int getBookId(){
        return bookId;
    }
    public String getTitle(){
        return  title;
    }

    public void setBookId(int bookId){
        this.bookId = bookId;
    }

    public void setTitle(String title){
        this.title = title;
    }
}