Hypercode/alex/hypercodePublic

Code

  1. hypercode
  2. database
  3. models
  4. organization.go
organization.go10 lines
package models

type Organization struct {
	ID          int64
	Username    string
	DisplayName string
	CreatedAt   int64
	UpdatedAt   int64
}