<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class PhotoTag extends Model
{
	/**
	 * The table associated with the model.
	 *
	 * @var string
	 */
	protected $table = 'photo_tag';
}