mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-08-26 13:17:30 -05:00
20 lines
345 B
PHP
20 lines
345 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Events\Model\TransactionGroup;
|
|
|
|
class TransactionGroupEventFlags
|
|
{
|
|
public bool $applyRules = true;
|
|
public bool $fireWebhooks = true;
|
|
public bool $batchSubmission = false;
|
|
public bool $recalculateCredit = true;
|
|
public bool $unifyOnly = false;
|
|
}
|