twitchconka

maithreepala

Oct 13th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.testapp.modelpaper;
  2.  
  3. import android.provider.BaseColumns;
  4.  
  5. public class UserProfile {
  6.  
  7.     private UserProfile(){}
  8.  
  9.     class users implements BaseColumns{
  10.         private static final String _ID = "_id";
  11.         private static final String _UserName = "_username";
  12.         private static final String _DOB = "_dob";
  13.         private static final String _Gender = "_gender";
  14.         private static final String _Password = "_password";
  15.     }
  16. }
Add Comment
Please, Sign In to add comment