PageRenderTime 35ms CodeModel.GetById 10ms RepoModel.GetById 1ms app.codeStats 0ms

/NfoLibrary/Music/Artist.vb

#
Visual Basic | 44 lines | 2 code | 4 blank | 38 comment | 0 complexity | da858ce2bcdc708a88d33106b32a595c MD5 | raw file
Possible License(s): GPL-2.0
  1. '<artist>
  2. ' <name>Artist/Band Name</name>
  3. ' <genre clear=true>First Genre</genre>
  4. ' <genre>Second Genre</genre>
  5. ' ...
  6. ' <genre>Nth Genre</genre>
  7. ' <style clear=true>First Style</style>
  8. ' <style>Second Style</style>
  9. ' ...
  10. ' <style>Nth Style<style>
  11. ' <mood clear=true>First Mood</mood>
  12. ' <mood>Second Mood</mood>
  13. ' ...
  14. ' <mood>Nth Mood</mood>
  15. ' <yearsactive clear=true>First year active (1993)</yearsactive>
  16. ' <yearsactive>Second year active (1995)</yearsactive>
  17. ' ...
  18. ' <yearsactive>Nth year active (2000)</yearsactive>
  19. ' <born>Birth date of artist</born>
  20. ' <formed>Date band formed</formed>
  21. ' <instruments>Musical instruments used by artist/band</instruments>
  22. ' <biography>Artist/Band biography text</biography>
  23. ' <died>Date artist died</died>
  24. ' <disbanded>Date band broke up<disbanded>
  25. ' <thumb>/path/to/unix/style/artist/thumb1.tbn</thumb>
  26. ' <thumb>C:\path\to\win32\style\artist\thumb2.png</thumb>
  27. ' <thumb>http://path.to/www/remote/artist/thumb3.jpg</thumb>
  28. ' <thumb>smb://path/to/smb/remote/artist/thumbN.tbn</thumb>
  29. ' <album>
  30. ' <title>First Album Title</title>
  31. ' <year>Release year of first album</year>
  32. ' </album>
  33. ' ...
  34. ' <album>
  35. ' <title>Nth Album Title</title>
  36. ' <year>Release year of Nth album</year>
  37. ' </album>
  38. '</artist>
  39. Public Class Artist
  40. End Class