Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. public class Task (){
  2.     int number,
  3.     String theme,
  4.     String description,
  5.     String executor,
  6.     String coExecutor,
  7.     int priority,
  8.     Date deadline
  9.  
  10.     Task(int number, String theme, String description, String executor, String coExecutor, int priority, Date deadline) {
  11.         this.number = number
  12.         this.theme = theme
  13.         this.decription = description
  14.         this.executor = executor
  15.         this.coExecutor = coExecutor
  16.         this.priority = priority
  17.         this.deadline = deadline
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement