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