forked from Mapan/odoo17e
17 lines
491 B
Python
17 lines
491 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class SocialTwitterAccount(models.Model):
|
|
_name = 'social.twitter.account'
|
|
_description = 'Social Twitter Account'
|
|
|
|
name = fields.Char('Name')
|
|
description = fields.Char('Description')
|
|
twitter_id = fields.Char('Twitter ID')
|
|
image = fields.Binary('Image')
|
|
|
|
twitter_searched_by_id = fields.Many2one('social.account', 'Searched by')
|