5 lines
71 B
Kotlin
5 lines
71 B
Kotlin
|
|
package com.isolaatti.common
|
||
|
|
|
||
|
|
interface Ownable {
|
||
|
|
val userId: Int
|
||
|
|
}
|