選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Profile.kt 209B

1234
  1. package com.dmdirc.ktirc.model
  2. /** Describes the client's profile information that will be provided to a server. */
  3. data class Profile(val initialNick: String, val realName: String, val userName: String)