Blame view

app/Queries/Vote/Vote.php 173 Bytes
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  
  namespace FootyRoom\Queries\Vote;
  
  class Vote
  {
      /**
       * @var string|int
       */
      public $value;
  
      /**
       * @var string
       */
      public $username;
  }