Skip to content

Commit

Permalink
feat(variables): added variables for settings
Browse files Browse the repository at this point in the history
  • Loading branch information
FazePino committed Jun 3, 2024
1 parent a31b822 commit 3175bdc
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/Entities/Settings/Setting.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?php
namespace App\Entities\Settings;

use OfflineAgency\LaravelFattureInCloudV2\Entities\AbstractEntity;

class Setting extends AbstractEntity
{
/**
* @var int
*/
public $id;

/**
* @var string
* */
public $name;

/**
* @var string
* */
public $type;

/**
* @var boolean
* */
public $is_default;

/**
* @var object
* */
public $default_payment_account;

/**
* @var object
* */
public $details;

/**
* @var string
* */
public $bank_iban;

/**
* @var string;
* */
public $bank_name;

/**
* @var string
* */
public $bank_beneficiary;

/**
* @var string
* */
public $ei_payment_method;
}

0 comments on commit 3175bdc

Please sign in to comment.