mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-26 10:12:16 +01:00
14 lines
213 B
PHP
14 lines
213 B
PHP
<?php
|
|
|
|
namespace AppBundle\Event\Model\EventStats;
|
|
|
|
class DailyStats
|
|
{
|
|
/** @var int */
|
|
public $registered = 0;
|
|
/** @var int */
|
|
public $confirmed = 0;
|
|
/** @var int */
|
|
public $pending = 0;
|
|
}
|