1: <?php
2:
3: namespace webfilesframework\core\datastore\types\mail;
4:
5: use webfilesframework\core\datasystem\file\format\MWebfile;
6:
7: 8: 9: 10: 11: 12:
13: class MMailAccount extends MWebfile
14: {
15:
16:
17: private $m_sHost;
18:
19: private $m_sPort;
20:
21: private $m_sUser;
22:
23: private $m_sPassword;
24:
25: public function __construct($host, $port, $user, $password)
26: {
27:
28: $this->m_sHost = $host;
29: $this->m_sPort = $port;
30: $this->m_sUser = $user;
31: $this->m_sPassword = $password;
32: }
33:
34: public function getHost()
35: {
36: return $this->m_sHost;
37: }
38:
39: public function getPort()
40: {
41: return $this->m_sPort;
42: }
43:
44: public function getUser()
45: {
46: return $this->m_sUser;
47: }
48:
49: public function getPassword()
50: {
51: return $this->m_sPassword;
52: }
53:
54: }