mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
262 B
Python
10 lines
262 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PmsAutomatedMails(models.Model):
|
|
_name = "pms.automated.mails"
|
|
_description = "Automatic Mails"
|
|
|
|
# TODO: Model to delete
|
|
name = fields.Char(string="Name", help="Name of the automated mail.", required=True)
|