17 lines
290 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
Entries []*CalendarEntry
}
// CalendarEntry is a calendar entry.
type CalendarEntry struct {
Anime *arn.Anime
Episode *arn.AnimeEpisode
2017-11-22 11:48:18 +00:00
Class string
2017-11-22 10:51:59 +00:00
}