Created
July 31, 2017 00:53
-
-
Save mwshubham/0343368203717adde67c01faf4b1ff74 to your computer and use it in GitHub Desktop.
CategoryContract
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class CategoryContract { | |
@SuppressWarnings("unused") | |
private static final String TAG = "CategoryContract"; | |
private CategoryContract() { | |
} | |
public static class CategoryEntry implements BaseColumns { | |
@SuppressWarnings("unused") | |
private static final String TAG = "CategoryEntry"; | |
public static final String TABLE_NAME = "category"; | |
public static final String COLUMN_NAME_ID = "id"; | |
public static final String COLUMN_NAME_DESCRIPTION = "description"; | |
public static final String COLUMN_NAME_NAME = "name"; | |
public static final String COLUMN_NAME_COUNT = "count"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment