mirror of
https://github.com/klaussilveira/gitlist.git
synced 2026-01-22 07:22:51 +01:00
41 lines
554 B
PHP
41 lines
554 B
PHP
<?php
|
|
|
|
namespace Git\Model;
|
|
|
|
class Symlink
|
|
{
|
|
protected $mode;
|
|
protected $name;
|
|
protected $path;
|
|
|
|
public function getMode()
|
|
{
|
|
return $this->mode;
|
|
}
|
|
|
|
public function setMode($mode)
|
|
{
|
|
$this->mode = $mode;
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function getPath()
|
|
{
|
|
return $this->path;
|
|
}
|
|
|
|
public function setPath($path)
|
|
{
|
|
$this->path = $path;
|
|
}
|
|
}
|