Skip to content
Snippets Groups Projects
Commit 9e6521bb authored by Sebastian's avatar Sebastian
Browse files

Delete now-unused model classes Contact and Message

parent 479c18e4
No related branches found
No related tags found
1 merge request!5Connect briar to UI
package org.briarproject.briar.desktop.paul.model
data class Contact(
val name: String,
val online: Boolean,
val profile_pic: String,
val last_heard: String,
val privateMessages: List<Message>
)
package org.briarproject.briar.desktop.paul.model
data class Message(
val from: String?,
val message: String,
val time: String,
val delivered: Boolean,
// val read: Boolean,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment