Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public final class Contract {
  2. public static final class Contacts {
  3. public static final String NAME = "Name"
  4. public static final String BIRTH = "Birth"
  5. public static final String IMAGE = "Image"
  6. }
  7. }
  8.  
  9. object BirthdayContract {
  10. class Contacts : BaseColumns {
  11. companion object {
  12. val NAME = "Name"
  13. val BIRTH = "Birth"
  14. val IMAGE = "Image"
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement