8 lines
125 B
PHP
8 lines
125 B
PHP
<?php
|
|
class Downloadable extends AppModel {
|
|
var $name = 'Downloadable';
|
|
|
|
var $belongsTo = array('File','Mirror');
|
|
}
|
|
?>
|