feat(core): New interim model TicketCommentSolution

ref: #731 #728
This commit is contained in:
2025-04-24 12:44:25 +09:30
parent 17e4cb4148
commit fef14b8be8

View File

@ -0,0 +1,25 @@
from core import exceptions as centurion_exception
from core.models.ticket_comment_base import TicketCommentBase
class TicketCommentSolution(
TicketCommentBase,
):
class Meta:
ordering = [
'id'
]
verbose_name = "Solution"
verbose_name_plural = "Solutions"
def clean(self):
super().clean()