1
1
Fork 0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-05-05 22:46:02 +02:00
wg-gen-web/model/client.go
2020-01-30 15:45:49 +09:00

17 lines
410 B
Go

package model
import "time"
type Client struct {
Id string `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Enable bool `json:"enable"`
Created time.Time `json:"created"`
Updated time.Time `json:"updated"`
AllowedIPs string `json:"allowedIPs"`
Address string `json:"address"`
PrivateKey string `json:"privateKey"`
PublicKey string `json:"publicKey"`
}