Skip to content

Commit

Permalink
Merge pull request #44 from remkobrenters/patch-1
Browse files Browse the repository at this point in the history
Adds AccountClassification
  • Loading branch information
stephangroen committed Feb 8, 2016
2 parents 5a22046 + b03f4d7 commit 0c2d26d
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 0c2d26d

Please sign in to comment.