15 lines
259 B
Go
15 lines
259 B
Go
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
|
||
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type SignupRequest struct {
|
||
|
|
ID int64
|
||
|
|
Username string
|
||
|
|
PasswordHash string
|
||
|
|
Status string
|
||
|
|
CreatedAt time.Time
|
||
|
|
ReviewedAt *time.Time
|
||
|
|
ReviewedBy int64
|
||
|
|
}
|