Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinTCoughlin committed Nov 25, 2024
1 parent 19312e4 commit d0362e6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Smodr/src/main/java/com/kevintcoughlin/smodr/models/Feed.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import com.tickaroo.tikxml.annotation.Element
import com.tickaroo.tikxml.annotation.Xml

@Xml(name = "rss")
class Feed {
@field:Element
var channel: Channel? = null
}
data class Feed(
@field:Element var channel: Channel = Channel()
)

0 comments on commit d0362e6

Please sign in to comment.