Fixed a lot of logic, replaced Files with Documents

This commit is contained in:
2023-10-17 16:48:44 +03:00
parent 3589237e33
commit 15887bd1b6
10 changed files with 128 additions and 37 deletions

View File

@@ -5,8 +5,10 @@ import org.lumijiez.enums.FileType;
import java.util.Date;
public interface IDocument {
public String getExtension();
public Date getCreatedTime();
public Date getModificationTime();
public FileType getFileType();
String getExtension();
Date getCreatedTime();
Date getModificationTime();
FileType getFileType();
long getFilesizeKB();
String getInfo();
}