before rewrite

This commit is contained in:
2026-03-15 17:59:22 +01:00
parent c97b21a39e
commit 9a677d7e46
9 changed files with 125 additions and 30 deletions
+5 -5
View File
@@ -7,11 +7,11 @@ import (
)
type User struct {
MemberGroupsId []uint32
MemberGroupsId []uint64
Name string
Password string
Color [3]byte
Id uint32
Id uint64
IsPasswordHashed bool
}
type Client struct {
@@ -23,9 +23,9 @@ type ChatGroup struct {
Members []User
CreatedAt time.Time
Name string
Id uint32
CreatorId uint32
OwnerId uint32
Id uint64
CreatorId uint64
OwnerId uint64
Color [3]byte
EnableUserColors bool
}