package com.github.hunter0x7c7.sync.model.data.source; /** * ================================================================ *

* 版 权: Hunter(c)2020 *

* 作 者: Hunter *

* 版 本: V1.0 *

* 创建日期: 2020/7/30 16:11 *

* 描 述:本地数据源 *

*

* 修订历史: *

* ================================================================ */ public interface LocalDataSource { /** * 获取授权隐私权限 */ int getAgreePrivacyPolicy(); /** * 设置授权隐私权限 */ void setAgreePrivacyPolicy(int verCode); /** * 获取新手引导 */ int getGuideVersionCode(); /** * 设置新手引导 */ void setGuideVersionCode(int verCode); /** * 获取主机 */ String getLocalHost(); /** * 保存主机 */ void saveHost(String host); }