// 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 }