mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
17 lines
454 B
Go
17 lines
454 B
Go
// Code generated from Pkl module `orm`. DO NOT EDIT.
|
|
package orm
|
|
|
|
type Session struct {
|
|
Id string `pkl:"id" json:"id,omitempty" query:"id"`
|
|
|
|
Subject string `pkl:"subject" json:"subject,omitempty"`
|
|
|
|
Controller string `pkl:"controller" json:"controller,omitempty"`
|
|
|
|
Origin string `pkl:"origin" json:"origin,omitempty"`
|
|
|
|
CreatedAt *string `pkl:"createdAt" json:"createdAt,omitempty"`
|
|
|
|
UpdatedAt *string `pkl:"updatedAt" json:"updatedAt,omitempty"`
|
|
}
|