13 lines
329 B
Go
13 lines
329 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type ActivityLogsResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
ActivityTypeId int `json:"activityTypeId"`
|
||
|
|
Url string `json:"url"`
|
||
|
|
ArticleId *int `json:"articleId"`
|
||
|
|
UserId *uint `json:"userId"`
|
||
|
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
|
}
|