<?php
namespace App\Model;

class Message{
    private string $type;
    private string $msg;

    public function __construct($msg, $type = 'error'){
	$this->msg = $msg;
	$this->type = $type;
    }

    public function getmsg(){
	return $this->msg;
    }

    public function gettype(){
	return $this->type;
    }
}
