tfstated/pkg/model/account.go

14 lines
178 B
Go
Raw Normal View History

package model
import "time"
type Account struct {
Id int
Username string
Password string
IsAdmin bool
Created time.Time
LastLogin time.Time
Settings any
}