summaryrefslogtreecommitdiff
path: root/tests/temporal/DTO/Message.php
blob: 61703fe87f9dc55b17e9424eee4e508096154607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php


namespace Temporal\Tests\DTO;

class Message
{
    public string $message;

    public function __construct(string $message)
    {
        $this->message = $message;
    }
}