Skip to content

Instantly share code, notes, and snippets.

@bashizip
Created April 24, 2019 20:44
Show Gist options
  • Save bashizip/447a00fa07d0dbe6cab11c1fc652008b to your computer and use it in GitHub Desktop.
Save bashizip/447a00fa07d0dbe6cab11c1fc652008b to your computer and use it in GitHub Desktop.
Task.java
public class Task implements Serializable {
private String name;
private int minutes;
private long createdOn;
private String createdBy;
private State state;
enum State{
pending, done,assigned
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment