diff --git a/database/model/model.go b/database/model/model.go index c5a02026..ecda4038 100644 --- a/database/model/model.go +++ b/database/model/model.go @@ -115,3 +115,10 @@ type Client struct { CreatedAt int64 `json:"created_at,omitempty"` UpdatedAt int64 `json:"updated_at,omitempty"` } + +type VLESSSettings struct { + Clients []Client `json:"clients"` + Decryption string `json:"decryption"` + Encryption string `json:"encryption"` + Fallbacks []any `json:"fallbacks"` +}