Organization (#3)
Go Release / build-and-release (push) Successful in 6s
Go CI / Test and Lint (push) Successful in 7s

Reviewed-on: phoenix/textsender-models#3
This commit was merged in pull request #3.
This commit is contained in:
2026-05-28 20:04:12 -04:00
parent 3ccc1a9a6d
commit f39d48d85a
2 changed files with 14 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
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"`
}