mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 09:38:51 +02:00
9 lines
210 B
Go
9 lines
210 B
Go
package model
|
|
|
|
type Feed struct {
|
|
Id string `db:"id" json:"id"`
|
|
Modules string `db:"modules" json:"modules"`
|
|
Created string `db:"created" json:"created"`
|
|
Updated string `db:"updated" json:"updated"`
|
|
}
|