add meta data to model

This commit is contained in:
Hossin Asaadi
2022-11-11 04:27:08 -05:00
parent 7fbd7c24ca
commit 6ba052b1f9

View File

@@ -75,4 +75,9 @@ type Client struct {
Email string `json:"email"` Email string `json:"email"`
LimitIP int `json:"limitIp"` LimitIP int `json:"limitIp"`
Security string `json:"security"` Security string `json:"security"`
Up int64 `json:"up" form:"up"`
Down int64 `json:"down" form:"down"`
Total int64 `json:"total" form:"total"`
Enable bool `json:"enable" form:"enable"`
ExpiryTime int64 `json:"expiryTime" form:"expiryTime"`
} }