4ce49c38b47df8e128f021d9a343679e70de72cd
[rock.divinelegy.git] / Domain / Entities / IFile.php
1 <?php
2
3 namespace Domain\Entities;
4
5 interface IFile extends IDivineEntity
6 {
7 public function getPath();
8 public function getHash();
9 public function getFilename();
10 public function getMimetype();
11 public function getSize();
12 public function getUploadDate();
13 }