Files
schedtxt_models/tx0/user/organization.go
T
phoenix f39d48d85a
Go Release / build-and-release (push) Successful in 6s
Go CI / Test and Lint (push) Successful in 7s
Organization (#3)
Reviewed-on: phoenix/textsender-models#3
2026-05-28 20:04:12 -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"`
}