1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/social_twitter/models/social_twitter_account.py
2024-12-10 09:04:09 +07:00

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')