<?php

namespace App\Models\Service;

use App\Models\Base\ServiceType;
use App\Traits\ServiceDomains;

/**
 * Class Email (Service)
 * Services that are Email Hosting
 */
class Email extends ServiceType
{
	use ServiceDomains;

	protected $table = 'service_email';
	protected $with = ['tld'];
}