Files
go-chat-app/internal/models/user.go
2026-02-26 08:21:58 -05:00

11 lines
264 B
Go

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"`
}