예제 #1
0
파일: Task.cs 프로젝트: angad/ToDoOrNoToDo
 public Task(Task tsk)
 {
     this.id = tsk.getId();
     this.name = tsk.getName();
     this.description = tsk.getDesc();
     this.star = tsk.getStar();
     this.deadline = tsk.getDeadline();
     this.done = tsk.getDone();
 }