openkeepd/internal/models/db/user.go
2019-10-20 22:31:35 +04:00

9 lines
141 B
Go

package db
// User represents entity that interacts with the system
type User struct {
UserID string
UserName string
Password string
}