feat: first init
This commit is contained in:
10
internal/models/user.go
Normal file
10
internal/models/user.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package models
|
||||
|
||||
type User struct {
|
||||
ID string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Email string `json:"email"`
|
||||
Username string `json:"username"`
|
||||
SentMessages int64 `json:"sent_messages"`
|
||||
IsBanned bool `json:"is_banned"`
|
||||
}
|
||||
Reference in New Issue
Block a user