2022-12-20
This commit is contained in:
28
api/src/Model/Tipo/Transaccion.php
Normal file
28
api/src/Model/Tipo/Transaccion.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace Contabilidad\Model\Tipo;
|
||||
|
||||
use ProVM\Alias\Model;
|
||||
|
||||
class Transaccion extends Model
|
||||
{
|
||||
protected string $nombre;
|
||||
public function setNombre(string $nombre): Transaccion
|
||||
{
|
||||
$this->nombre = $nombre;
|
||||
return $this;
|
||||
}
|
||||
public function getNombre(): string
|
||||
{
|
||||
return $this->nombre;
|
||||
}
|
||||
protected string $color;
|
||||
public function setColor(string $color): Transaccion
|
||||
{
|
||||
$this->color = $color;
|
||||
return $this;
|
||||
}
|
||||
public function getColor(): string
|
||||
{
|
||||
return $this->color;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user