~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to lib/Entity/DataType.php

  • Committer: Dan Garner
  • Date: 2015-08-03 13:19:52 UTC
  • mto: This revision was merged to the branch mainline in revision 447.
  • Revision ID: git-v1:51aff4ced58edafab2631842d7de83086daa6e8d
Document Models with Swagger

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
namespace Xibo\Entity;
10
10
 
11
11
 
12
 
class DataType
 
12
/**
 
13
 * Class DataType
 
14
 * @package Xibo\Entity
 
15
 *
 
16
 * @SWG\Definition()
 
17
 */
 
18
class DataType implements \JsonSerializable
13
19
{
14
20
    use EntityTrait;
 
21
 
 
22
    /**
 
23
     * @SWG\Property(description="The ID for this DataType")
 
24
     * @var int
 
25
     */
15
26
    public $dataTypeId;
 
27
 
 
28
    /**
 
29
     * @SWG\Property(description="The Name for this DataType")
 
30
     * @var string
 
31
     */
16
32
    public $dataType;
17
33
}
 
 
b'\\ No newline at end of file'