/**
* 2011 Foxykeep (http://datadroid.foxykeep.com)
* <p>
* Licensed under the Beerware License : <br />
* As long as you retain this notice you can do whatever you want with this stuff. If we meet some
* day, and you think this stuff is worth it, you can buy me a beer in return
*/
package com.foxykeep.datadroidpoc.config;
public final class SharedPrefsConfig {
private SharedPrefsConfig() {
// No public constructor
}
public static final String SHARED_PREFS_FILENAME = "com.foxykeep.datadroidpoc.config.sp";
public static final String SHARED_PREFS_USER_ID = "userId";
}