Implement download entity and related stuff. Will build things like user quota on...
[rock.divinelegy.git] / Domain / Entities / IDownload.php
1 <?php
2
3 namespace Domain\Entities;
4
5 interface IDownload
6 {
7 public function getUser();
8 public function getFile();
9 public function getTimestamp();
10 public function getIp();
11 }
12