Files
schedtxt_models/tx0/user/user.go
T
2025-11-24 16:23:13 -05:00

13 lines
235 B
Go

package user
import (
"github.com/google/uuid"
)
type User struct {
Id uuid.UUID `json:"id"`
PhoneNumber string `json:"phone_number"`
Username string `json:"username"`
Password string `json:"password"`
}