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"` +}