Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/7a288e74d1db083a99b42face1101d72 to your computer and use it in GitHub Desktop.
Save dvallin/7a288e74d1db083a99b42face1101d72 to your computer and use it in GitHub Desktop.
public class Task {
@Id
public final UUID id;
public final String title;
public Task(final String title) {
this.id = UUID.randomUUID();
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment