Files
test/spiffy_theme_backend/models/favorite_apps.py
2023-07-14 09:21:21 +08:00

15 lines
483 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo Module Developed by Bizople Solutions Pvt. Ltd.
# See LICENSE file for full copyright and licensing details.
from odoo import models, fields, api
class FavoriteApps(models.Model):
_name = "favorite.apps"
_description = "Favorite Apps"
name = fields.Char("Name")
app_id = fields.Char("App Id")
app_xmlid = fields.Char("App XML Id")
app_actionid = fields.Char("App Action Id")
user_id = fields.Many2one('res.users')