Files
schedtxt_models/tx0/user/organization.go
T
phoenix 548a8eaa07
Go Release / build-and-release (pull_request) Successful in 5s
Go CI / Test and Lint (pull_request) Successful in 7s
Go CI / Test and Lint (push) Successful in 17s
go fmt
2026-05-28 20:01:14 -04:00

14 lines
203 B
Go

package user
import (
"time"
"github.com/google/uuid"
)
type Organization struct {
Id uuid.UUID `json:"id"`
Name string `json:"name"`
Created *time.Time `json:"created,omitempty"`
}