mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 00:55:32 +00:00
20 lines
288 B
Go
20 lines
288 B
Go
package xmlprovider
|
|
|
|
type SerializedItem struct {
|
|
Source string
|
|
Date string
|
|
Commit string
|
|
}
|
|
|
|
func (si SerializedItem) SetSource(s string) {
|
|
si.Source = s
|
|
}
|
|
|
|
func (si SerializedItem) SetDate(d string) {
|
|
si.Date = d
|
|
}
|
|
|
|
func (si SerializedItem) SetCommit(c string) {
|
|
si.Commit = c
|
|
}
|