aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/JsonApi/Models/StudipProperty.php
blob: 4fd0e3637d729aada434d9ebb858bc5a0e0e9230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace JsonApi\Models;

class StudipProperty
{
    public $field;
    public $description;
    public $value;

    public function __construct($field, $description, $value)
    {
        $this->field = $field;
        $this->description = $description;
        $this->value = $value;
    }
}