mirror of
https://github.com/ivuorinen/branch-usage-checker.git
synced 2026-01-26 11:44:02 +00:00
12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace App\Dto;
|
|
|
|
use Spatie\DataTransferObject\DataTransferObject;
|
|
|
|
class GitHubApiBranch extends DataTransferObject
|
|
{
|
|
public string $name;
|
|
public bool $protected;
|
|
}
|