Этот коммит содержится в:
Harshil Sharma
2023-12-25 12:41:28 +05:30
коммит произвёл GitHub
родитель 6520e570e0
Коммит d23c16b9aa
4 изменённых файлов: 5 добавлений и 25 удалений

Просмотреть файл

@@ -4,8 +4,6 @@
package model
type UserLimits struct {
MaxUsersLimit int64 `json:"maxUsersLimit"` // max number of users allowed
LowerBandUserLimit int64 `json:"lowerBandUserLimit"` // user count for 1st warning
UpperBandUserLimit int64 `json:"upperBandUserLimit"` // user count for 2nd warning
ActiveUserCount int64 `json:"activeUserCount"` // actual number of active users on server. Active = non deleted
MaxUsersLimit int64 `json:"maxUsersLimit"` // max number of users allowed
ActiveUserCount int64 `json:"activeUserCount"` // actual number of active users on server. Active = non deleted
}