// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial // SPDX-FileCopyrightText: 2025-2026 Christian Galo // Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.29.0 package instance import ( "database/sql" "encoding/json" "time" ) type CoreInstanceSetting struct { Key string `json:"key"` Value json.RawMessage `json:"value"` UpdatedAt time.Time `json:"updated_at"` UpdatedBy sql.NullString `json:"updated_by"` }