2022-12-20

This commit is contained in:
2022-12-20 14:13:05 -03:00
parent 85fef16b27
commit 0f3febc00d
87 changed files with 2525 additions and 419 deletions

View 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;
}
}