// Source: lemmy/crates/db_schema/src/source/tagline.rs // Code generated by go.arsenm.dev/go-lemmy/cmd/gen (struct generator). DO NOT EDIT. package types type Tagline struct { ID int32 `json:"id" url:"id,omitempty"` LocalSiteID int `json:"local_site_id" url:"local_site_id,omitempty"` Content string `json:"content" url:"content,omitempty"` Published LemmyTime `json:"published" url:"published,omitempty"` Updated LemmyTime `json:"updated" url:"updated,omitempty"` } type TaglineForm struct { LocalSiteID int `json:"local_site_id" url:"local_site_id,omitempty"` Content string `json:"content" url:"content,omitempty"` Updated LemmyTime `json:"updated" url:"updated,omitempty"` }