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

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2024-12-27 15:19:49 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2024-12-27 15:48:07 +0300
commit04c658f1a09bcae8d8a68b20196a9956f7ff24b3 (patch)
tree79691c569d42ca0f06785719809e8a250f88861d /database/model
parent2ab1a174dbed37c455a95356ff6b995eafd23440 (diff)
Client: Comment
now you can add Comment and write anything you want to remember
Diffstat (limited to 'database/model')
-rw-r--r--database/model/model.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/database/model/model.go b/database/model/model.go
index 9893776d..e9d1836f 100644
--- a/database/model/model.go
+++ b/database/model/model.go
@@ -98,5 +98,6 @@ type Client struct {
Enable bool `json:"enable" form:"enable"`
TgID int64 `json:"tgId" form:"tgId"`
SubID string `json:"subId" form:"subId"`
+ Comment string `json:"comment" form:"comment"`
Reset int `json:"reset" form:"reset"`
}