Browse Source

Add new attribute to OCFile to know if this file is shared with users/groups

masensio 9 years ago
parent
commit
c288f91d87
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/com/owncloud/android/datamodel/OCFile.java

+ 2 - 0
src/com/owncloud/android/datamodel/OCFile.java

@@ -75,6 +75,7 @@ public class OCFile implements Parcelable, Comparable<OCFile> {
     private boolean mIsDownloading;
 
     private String mEtagInConflict;    // Save file etag in the server, when there is a conflict. No conflict =  null
+
     private boolean mShareWithUser;
 
 
@@ -603,4 +604,5 @@ public class OCFile implements Parcelable, Comparable<OCFile> {
     public void setShareWithUser(boolean shareWithUser) {
         this.mShareWithUser = shareWithUser;
     }
+
 }