crytoteam/public_html/libgit/class.tree.element.php
2012-05-05 21:31:08 +02:00

15 lines
227 B
PHP

<?php
class GitTreeElement
{
public $mode = "";
public $filename = "";
public $hash = "";
function __construct($mode, $filename, $hash)
{
$this->mode = $mode;
$this->filename = $filename;
$this->hash = $hash;
}
}