15 lines
439 B
Go
15 lines
439 B
Go
|
package vo
|
||
|
|
||
|
import "wireguard-dashboard/model/entity"
|
||
|
|
||
|
type SystemLogItem struct {
|
||
|
Id string `json:"id"`
|
||
|
Username string `json:"username"`
|
||
|
ClientIP string `json:"clientIP"`
|
||
|
Method string `json:"method"`
|
||
|
Host string `json:"host"`
|
||
|
Uri string `json:"uri"`
|
||
|
StatusCode int `json:"statusCode"`
|
||
|
CreatedAt entity.JsonTime `json:"createdAt"`
|
||
|
}
|