Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
MailSmtpSetting
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace PeServer\App\Models\Configuration;
6
7use PeServer\Core\Serialization\Mapping;
8
9/**
10 * SMTP設定。
11 *
12 * @immutable
13 */
14class MailSmtpSetting
15{
16    #region variable
17
18    public string $host;
19    public int $port;
20    public string $secure;
21    public bool $authentication;
22    #[Mapping(name: 'user_name')]
23    public string $userName;
24    public string $password;
25
26    #endregion
27}