mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-06 18:49:47 +08:00
18 lines
227 B
Python
18 lines
227 B
Python
from enum import Enum, IntEnum
|
|
|
|
|
|
class ProductType(IntEnum):
|
|
article = 1
|
|
page = 2
|
|
|
|
|
|
class Status(IntEnum):
|
|
on = 1
|
|
off = 0
|
|
|
|
|
|
class Action(str, Enum):
|
|
create = "create"
|
|
delete = "delete"
|
|
edit = "edit"
|