Guest User

Untitled

a guest
Oct 14th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. package com.bla.androidsqlitebasics.database;
  2.  
  3. import android.provider.BaseColumns;
  4.  
  5. public final class UserProfile {
  6.  
  7. private UserProfile() { }
  8.  
  9. public class User implements BaseColumns {
  10. public static final String TABLE_NAME = "UserInfo";
  11. public static final String COLUMN_USERNAME = "username";
  12. public static final String COLUMN_DOB = "dob";
  13. public static final String COLUMN_PASSWORD = "password";
  14. public static final String COLUMN_GENDER = "gender";
  15. }
  16. }
Add Comment
Please, Sign In to add comment