14 lines
350 B
Go
14 lines
350 B
Go
package domain
|
|
|
|
type User struct {
|
|
ID int64 `json:"id"`
|
|
TGB_ID int64 `json:"tgb_id"`
|
|
Username string `json:"username"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
TGBOT string `json:"tg_bot"`
|
|
Created int64 `json:"created"`
|
|
Edited int64 `json:"edited"`
|
|
Deleted int64 `json:"deleted"`
|
|
}
|