Files
CatsOfMastodonGo/models/account.go
2025-05-10 20:35:16 +03:30

11 lines
333 B
Go

package models
type Account struct {
AccId string `json:"id" gorm:"primaryKey"`
Username string `json:"username"`
Acct string `json:"acct"`
DisplayName string `json:"display_name"`
IsBot bool `json:"bot"`
Url string `json:"url"`
AvatarStatic string `json:"avatar_static"`
}