Skip to content

Commit

Permalink
Adds AccountClassification
Browse files Browse the repository at this point in the history
  • Loading branch information
remkobrenters committed Feb 6, 2016
1 parent 5a22046 commit b03f4d7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/Picqer/Financials/Exact/AccountClassification.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php namespace Picqer\Financials\Exact;

class AccountClassification extends Model
{

use Query\Findable;
use Persistance\Storable;

protected $fillable = [
'ID',
'AccountClassificationName',
'AccountClassificationNameDescription',
'Code',
'Created',
'Creator',
'CreatorFullName',
'Description',
'Division',
'Modified',
'Modifier',
'ModifierFullName',
];

protected $url = 'crm/AccountClassifications';
}

0 comments on commit b03f4d7

Please sign in to comment.