18 lines
315 B
Go
Raw Normal View History

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