# billingo/4.2.9/src/Models/Util/Id.php

Billingo Official for WooCommerce, version 4.2.9. 22 lines.

- Page: https://pluginprobe.com/plugins/billingo/4.2.9/code/src/Models/Util/Id.php
- Raw: https://pluginprobe.com/plugins/billingo/4.2.9/raw/src/Models/Util/Id.php
- Modified: 2025-05-26T04:53:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/billingo/4.2.9/code/src/Models/Util/Id.php#L10-L20`.

```php
<?php

namespace App\Billingo\Models\Util;

use App\Billingo\Contracts\ValidableInterface;
use App\Billingo\Models\BillingoModel;
use App\Billingo\Validation\Util\IdValidator;

/**
 * @property int $id
 * @property int $legacy_id
 */

class Id extends BillingoModel
{

    protected function getValidator(): ValidableInterface
    {
        return new IdValidator();
    }
}

```
