18 lines
310 B
Go
Raw Normal View History

2017-11-22 11:51:59 +01:00
package utils
2019-06-03 18:32:43 +09:00
import "github.com/animenotifier/notify.moe/arn"
2017-11-22 11:51:59 +01:00
// CalendarDay is a calendar day.
type CalendarDay struct {
Name string
2017-12-03 19:08:05 +01:00
Class string
2017-11-22 11:51:59 +01:00
Entries []*CalendarEntry
}
// CalendarEntry is a calendar entry.
type CalendarEntry struct {
Anime *arn.Anime
2019-08-28 17:06:42 +09:00
Episode *arn.Episode
2017-12-03 19:08:05 +01:00
Added bool
2017-11-22 11:51:59 +01:00
}