22 lines
360 B
Go
22 lines
360 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type TgAccount struct {
|
||
|
ID int64
|
||
|
ApiID int32
|
||
|
ApiHash string
|
||
|
PhoneNumber string
|
||
|
Status TgAccountStatus
|
||
|
Deleted bool
|
||
|
CreatedAt time.Time
|
||
|
}
|
||
|
|
||
|
type TgAccountStatus string
|
||
|
|
||
|
const (
|
||
|
ActiveTg TgAccountStatus = "active"
|
||
|
InactiveTg TgAccountStatus = "inactive"
|
||
|
BanTg TgAccountStatus = "ban"
|
||
|
)
|