Add types.SettingsTypeFilter struct

This commit is contained in:
qowevisa 2024-11-30 16:37:11 +02:00
parent 03fa9ff9bc
commit 6d41a778b3

View File

@ -197,3 +197,11 @@ type StatsTypeCurrencyChart struct {
CurrencyLabel string `json:"label" example:"$ (USD)"`
Elements []StatsType `json:"elements"`
}
// {{{ Settings section
type SettingsTypeFilter struct {
TypeID uint `json:"type_id" example:"1"`
FilterThis bool `json:"filter_this" example:"true"`
}
// }}}