Files
geo/server/internal/tenant/domain/tenant.go
T

21 lines
300 B
Go
Raw Normal View History

package domain
import "time"
type Tenant struct {
ID int64
Name string
Status string
FrozenAt *time.Time
CreatedAt time.Time
UpdatedAt time.Time
}
type TenantMembership struct {
ID int64
TenantID int64
UserID int64
TenantRole string
CreatedAt time.Time
}