♻️ Extract FreeGame into its own file
[rhynodge.git] / src / main / kotlin / net / pterodactylus / rhynodge / filters / webpages / epicgames / FreeGame.kt
1 package net.pterodactylus.rhynodge.filters.webpages.epicgames
2
3 import java.time.Instant
4
5 data class FreeGame(
6         val title: String,
7         val imageUrl: String,
8         val startDate: Instant,
9         val endDate: Instant
10 )