summaryrefslogtreecommitdiff
path: root/addons/website_event_track/models/event_track_location.py
blob: 4c56e8370fe6179e3c6be4b2ec1f39f13dd5259d (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

from odoo import fields, models


class TrackLocation(models.Model):
    _name = "event.track.location"
    _description = 'Event Track Location'

    name = fields.Char('Location', required=True)