Welcome to mirror list, hosted at ThFree Co, Russian Federation.

client_traffic.go « xray - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4df6a5027815f1ab8b154760fe06326817e7df39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package xray

type ClientTraffic struct {
	Id  int `json:"id" form:"id" gorm:"primaryKey;autoIncrement"`
	InboundId int `json:"inboundId" form:"inboundId"`
	Enable     bool   `json:"enable" form:"enable"`
	Email       string `json:"email" form:"email" gorm:"unique"`
	Up        int64 `json:"up" form:"up"`
	Down      int64 `json:"down" form:"down"`
	ExpiryTime int64  `json:"expiryTime" form:"expiryTime"`
	Total      int64  `json:"total" form:"total"`
}