You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
727 B
31 lines
727 B
<?php
|
|
|
|
namespace Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* CItemProperty
|
|
*
|
|
*/
|
|
class UserCourseSessionGroup
|
|
{
|
|
/**
|
|
* @ORM\ManyToOne(targetEntity="Course", inversedBy="userCourseSessionGroup")
|
|
* @ORM\JoinColumn(name="id", referencedColumnName="id", nullable=false)
|
|
*/
|
|
private $course;
|
|
|
|
/**
|
|
* @ORM\@ManyToOne(targetEntity="User", inversedBy="userCourseSessionGroup")
|
|
* @ORM\JoinColumn(name="user_id", referencedColumnName="user_id", nullable=false)
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* @ORM\ManyToOne(targetEntity="Events", inversedBy="userCourseSessionGroup")
|
|
* @ORM\JoinColumn(name="event_id", referencedColumnName="id", nullable=false)
|
|
*/
|
|
//private $session;
|
|
|
|
} |