Compare commits

..
Author SHA1 Message Date
phoenix 548a8eaa07 go fmt
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
2026-05-28 20:01:14 -04:00
phoenix 6d52867485 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
2026-05-28 15:22:22 -04:00
phoenix 3ccc1a9a6d UserProfile (#1)
Go Release / build-and-release (push) Successful in 5s
Go CI / Test and Lint (push) Successful in 6s
Reviewed-on: phoenix/textsender-models#1
2026-05-27 22:59:45 -04:00
+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"`
}