Organization #3

Merged
phoenix merged 3 commits from org into main 2026-05-28 20:04:12 -04:00
Showing only changes of commit 6d52867485 - Show all commits
+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"`
}