Created
April 24, 2019 20:44
-
-
Save bashizip/447a00fa07d0dbe6cab11c1fc652008b to your computer and use it in GitHub Desktop.
Task.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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