?? GreyFile — Mystic File Browser

Current path: home/webdevt/cryptoimpot.fr/module/Application/src/Entity/



?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/src

?? Viewing: DeviseOld.php

<?php

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

namespace Application\Entity;

/**
 * Description of Devise
 *
 * @author jimmy
 */
class DeviseOld {
    
     /**
     * @ORM\Id
     * @ORM\Column(type="integer", name="id");
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    public $id;

    /**
     * @ORM\Column(type="string", columnDefinition="CHAR(255) NOT NULL")
     */
    public $name;
    
    /**
     * @ORM\Column(type="string", columnDefinition="CHAR(255) NOT NULL")
     */
    public $code;
    
    
}


??

??