Skip to content
Snippets Groups Projects
Select Git revision
  • 364bec0156b55d0458544219eb8da3c66c8d983e
  • master default
  • rewrite
3 results

ProjectReference.scala

Blame
  • ProjectReference.scala 305 B
    package de.tobias.playpad.server.project
    
    import java.util.UUID
    
    /**
      * Created by tobias on 19.02.17.
      */
    class ProjectReference {
    
    	var id: UUID = UUID.randomUUID()
    	var name: String = _
    
    	var accountId: Int = _ // Account that own this project
    	var lastModified: Long = _
    	var session: String = _
    
    }