1
0
mirror of synced 2025-02-03 22:09:26 +03:00

22 lines
260 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\DDC6412;
/**
* @Entity
*/
class DDC6412File
{
/**
* @Column(type="integer")
* @GeneratedValue
*/
public $id;
/**
* @Column(length=50, name="file_name")
*/
public $name;
}