13 lines
300 B
Python
13 lines
300 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class MailTestCC(models.Model):
|
|
_name = 'mail.test.cc'
|
|
_description = "Test Email CC Thread"
|
|
_inherit = ['mail.thread.cc']
|
|
|
|
name = fields.Char()
|