Back to project page RavenChat.
The source code is released under:
Copyright (c) 2014 Sumit Gouthaman. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softwar...
If you think the Android project RavenChat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sumitgouthaman.raven.models; /* ww w . j a v a 2s .c o m*/ /** * Created by sumit on 10/3/14. */ /** * Class used to pass properties of objects in the Contacts list screen */ public class MessageListItem { public String contactName = "Contact Name"; public String messagePreview = "This is a long message...."; public boolean unread = false; public String secretUsername = ""; public String registrationID = ""; public String encKey = null; }