PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 1ms

/FanartScraper/Fanart.vb

#
Visual Basic | 15 lines | 11 code | 4 blank | 0 comment | 0 complexity | b75bfe05a0edd0c33ba60439ffa04718 MD5 | raw file
Possible License(s): GPL-2.0
  1. Imports ProtoXML
  2. Public Class Fanart
  3. Inherits ProtoFile
  4. Public Sub New()
  5. MyBase.New("fanart")
  6. End Sub
  7. Public Property ClearLogos As New ProtoGroupList(Of ProtoImage)(Me, "clearlogos", "clearlogo", New ProtoImage(Nothing, "clearlogo", Nothing) With {.FileName = "logo.png"})
  8. Public Property ClearArts As New ProtoGroupList(Of ProtoImage)(Me, "cleararts", "clearart", New ProtoImage(Nothing, "clearart", Nothing) With {.FileName = "clearart.png"})
  9. Public Property TvThumbs As New ProtoGroupList(Of ProtoImage)(Me, "tvthumbs", "tbthumb", New ProtoImage(Nothing, "tvthumb", Nothing) With {.FileName = "tvthumb.png"})
  10. Public Property SeasonThumbs As New ProtoGroupList(Of ProtoImage)(Me, "seasonthumbs", "seasonthumb", New ProtoImage(Nothing, "seasonthumb", Nothing) With {.FileName = "seasonX.png"})
  11. End Class