mirror of
https://github.com/ChronosX88/openkeepd.git
synced 2024-11-08 18:41:00 +00:00
9 lines
141 B
Go
9 lines
141 B
Go
|
package db
|
||
|
|
||
|
// User represents entity that interacts with the system
|
||
|
type User struct {
|
||
|
UserID string
|
||
|
UserName string
|
||
|
Password string
|
||
|
}
|