1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6namespace App\Models\ReplayViewCount;
7
8/**
9 * @property int $play_count
10 * @property int $score_id
11 * @property int $version
12 */
13class Mania extends Model
14{
15 protected $table = 'osu_replays_mania';
16}