Skip to content

Instantly share code, notes, and snippets.

@koyablue
Created November 4, 2021 03:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koyablue/fbe39c56e70a119b97fb9faad28038df to your computer and use it in GitHub Desktop.
Save koyablue/fbe39c56e70a119b97fb9faad28038df to your computer and use it in GitHub Desktop.
<?php
namespace App\Packages\FrontPage\Shared\Presentation\Dto;
class GetLocaleSessionResponse
{
public string $locale;
public function __construct(string $locale)
{
$this->locale = $locale;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment