From 6d5286748539452e5c3c2ec85078a738167b41a2 Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 28 May 2026 15:22:22 -0400 Subject: [PATCH] Added Organization struct --- tx0/user/organization.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tx0/user/organization.go diff --git a/tx0/user/organization.go b/tx0/user/organization.go new file mode 100644 index 0000000..d1eb090 --- /dev/null +++ b/tx0/user/organization.go @@ -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"` +}