15 lines
483 B
Python
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') |