block-accounting/backend/internal/pkg/models/organization.go
2024-05-18 11:22:53 +03:00

17 lines
215 B
Go

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