Guest User

Untitled

a guest
Jan 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package com.nstu.domain.model.discipline
  2.  
  3. import com.nstu.domain.model.user.Professor
  4. import java.util.*
  5.  
  6. data class Discipline(
  7. val id: Int,
  8. val name: String,
  9. val listLessons: List<Lesson>,
  10. val listProfessors: List<Professor>
  11. ){
  12. fun myFun(object: Object) {
  13. //TODO Do something
  14. }
  15.  
  16. fun myFunWithResult(): Discipline{
  17. return this
  18. }
  19. }
Add Comment
Please, Sign In to add comment