mirror of
https://github.com/jonathan-martz/pocketbase-php-sdk.git
synced 2026-04-03 07:27:42 +00:00
14 lines
223 B
PHP
14 lines
223 B
PHP
<?php
|
|
|
|
namespace Pb\viewModels;
|
|
|
|
use DateTime;
|
|
|
|
class CollectionItem
|
|
{
|
|
public string $collectionName;
|
|
public string $collectionId;
|
|
public DateTime $created;
|
|
public string $id;
|
|
public DateTime $updated;
|
|
} |