service/apollostruct/notif_template.go

10 lines
290 B
Go
Raw Normal View History

2024-11-01 15:35:45 +08:00
package apollostruct
type NotifTemplateCfg struct {
2024-11-25 17:25:46 +08:00
Title string `json:"title"`
2024-11-01 15:35:45 +08:00
NotifTemplate string `json:"notif_template"`
NType int64 `json:"n_type"`
2024-11-04 18:26:51 +08:00
LinkTextTemplate string `json:"link_text_template"`
2024-12-03 14:52:07 +08:00
FrontendRouteId int64 `json:"frontend_route_id"`
2024-11-01 15:35:45 +08:00
}