flectra/addons/helpdesk_basic/models/helpdesk_tag.py

12 lines
303 B
Python
Raw Normal View History

# Part of Flectra See LICENSE file for full copyright and licensing details.
from flectra import fields, models
class HelpdeskTag(models.Model):
_name = 'helpdesk.tag'
_description = 'Helpdesk Tags'
2018-08-06 14:47:29 +02:00
name = fields.Char('Name', required=True)
code = fields.Char('Code', required=True)