diff options
author | Vitaly Takmazov | 2016-01-16 23:36:20 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-01-16 23:36:20 +0300 |
commit | de32a6e9e994b830fdf0768d0825559a85d19654 (patch) | |
tree | eb33c84a3476055e7bfd312476d28f77155e07e7 /src/main/java/com/juick/server/helpers | |
parent | 279765857724cf35addc0e3f5e7180a8724d23b9 (diff) |
message queries almost done
Diffstat (limited to 'src/main/java/com/juick/server/helpers')
-rw-r--r-- | src/main/java/com/juick/server/helpers/PrivacyOpts.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/main/java/com/juick/server/helpers/PrivacyOpts.java b/src/main/java/com/juick/server/helpers/PrivacyOpts.java new file mode 100644 index 00000000..66cf9410 --- /dev/null +++ b/src/main/java/com/juick/server/helpers/PrivacyOpts.java @@ -0,0 +1,29 @@ +package com.juick.server.helpers; + +/** + * Created by vt on 16/01/16. + */ +public class PrivacyOpts { + private int uid; + private int privacy; + + public PrivacyOpts() { + + } + + public int getUid() { + return uid; + } + + public void setUid(int uid) { + this.uid = uid; + } + + public int getPrivacy() { + return privacy; + } + + public void setPrivacy(int privacy) { + this.privacy = privacy; + } +} |