mirror of
https://github.com/beestat/app.git
synced 2025-05-23 18:04:14 -04:00
18 lines
195 B
PHP
18 lines
195 B
PHP
<?php
|
|
|
|
/**
|
|
* Stripe Event
|
|
*
|
|
* @author Jon Ziebell
|
|
*/
|
|
class stripe_event extends cora\crud {
|
|
|
|
public static $exposed = [
|
|
'private' => [
|
|
'read_id'
|
|
],
|
|
'public' => []
|
|
];
|
|
|
|
}
|