16 lines
233 B
Go
16 lines
233 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type ToTelegram struct {
|
||
|
ID string
|
||
|
UserID string
|
||
|
UserURL string
|
||
|
Accepted bool
|
||
|
Status string
|
||
|
UpdatedAt time.Time
|
||
|
Comment string
|
||
|
Files []VerificationFile
|
||
|
TaxNumber string
|
||
|
}
|