Added Organization struct
Go CI / Test and Lint (push) Successful in 17s
Go Release / build-and-release (pull_request) Successful in 6s
Go CI / Test and Lint (pull_request) Successful in 16s

This commit is contained in:
2026-05-28 15:22:22 -04:00
parent 3ccc1a9a6d
commit 6d52867485
+14
View File
@@ -0,0 +1,14 @@
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"`
}