<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: \App\Repository\MobileVersionRepository::class)]
class MobileVersion
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private int $id;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $kind= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $device= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $code= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $display_name= null;
public function getId(): ?int
{
return $this->id;
}
public function getKind(): ?string
{
return $this->kind;
}
public function setKind(?string $kind): self
{
$this->kind = $kind;
return $this;
}
public function getDevice(): ?string
{
return $this->device;
}
public function setDevice(?string $device): self
{
$this->device = $device;
return $this;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(?string $code): self
{
$this->code = $code;
return $this;
}
public function getDisplayName(): ?string
{
return $this->display_name;
}
public function setDisplayName(?string $display_name): self
{
$this->display_name = $display_name;
return $this;
}
}