12345678910111213141516171819202122 |
- package models
- import "time"
- type Tag struct {
- ID uint64
- Title string
- Style string
- CreatedAt time.Time
- UpdatedAt time.Time
- }
- type AddTagRequest struct {
- Title string
- Style string
- }
- type UpdateTagRequest struct {
- ID uint64
- Title string
- Style string
- }
|