123456789101112131415161718192021222324252627282930 |
- package models
- import "time"
- type ThingNotification struct {
- ThingID int
- NotificationDate time.Time
- CreatedAt time.Time
- UpdatedAt time.Time
- }
- type AddThingNotificationRequest struct {
- ThingID int
- NotificationDate time.Time
- }
- type UpdateThingNotificationRequest struct {
- ThingID int
- NotificationDate time.Time
- }
- type ExtThingNotification struct {
- ThingID int
- PlaceID int
- ThingTitle string
- PlaceTitle string
- NotificationDate time.Time
- CreatedAt time.Time
- UpdatedAt time.Time
- }
|