summaryrefslogtreecommitdiff
path: root/internal/queries/models.go
blob: 1257397008b7f8f3d3443047bf8598a0948b2313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Code generated by sqlc. DO NOT EDIT.
// versions:
//   sqlc v1.29.0

package queries

import (
	"database/sql"
	"time"
)

type Client struct {
	ID           int64
	Name         string
	Email        sql.NullString
	BillableRate sql.NullInt64
	CreatedAt    sql.NullTime
}

type Project struct {
	ID           int64
	Name         string
	ClientID     int64
	BillableRate sql.NullInt64
	CreatedAt    sql.NullTime
}

type TimeEntry struct {
	ID           int64
	StartTime    time.Time
	EndTime      sql.NullTime
	Description  sql.NullString
	ClientID     int64
	ProjectID    sql.NullInt64
	BillableRate sql.NullInt64
}