block-accounting/backend/internal/pkg/models/organization.go

15 lines
173 B
Go

package models
import (
"time"
"github.com/google/uuid"
)
type Organization struct {
ID uuid.UUID
Name string
CreatedAt time.Time
UpdatedAt time.Time
}