Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
RestApp.php
1<?php
3
4use Bitrix\UI\Avatar;
6
7class RestApp extends System
8{
9 protected int $id;
10
11 public function __construct(int $id)
12 {
13 $this->id = $id;
14 }
15
16 public function getId()
17 {
18 return $this->id;
19 }
20}