18 lines
304 B
Go
Raw Normal View History

2017-11-22 10:51:59 +00:00
package utils
import "github.com/animenotifier/arn"
// 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
}