PageRenderTime 35ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/Structures/TempMovieActors.vb

#
Visual Basic | 12 lines | 12 code | 0 blank | 0 comment | 0 complexity | 149bcfa59a1bb3ceda686865cb13ad98 MD5 | raw file
Possible License(s): GPL-2.0
  1. Public Structure str_TempMovieActors
  2. Public Shared actorName As String
  3. Public Shared actorRole As String
  4. Public Shared actorThumb As String
  5. Public Shared actorID As String
  6. Sub New(SetDefaults As Boolean) 'When called with new keyword & boolean constant SetDefault (either T or F), initialises all values to defaults to avoid having some variables left as 'nothing'
  7. actorName = ""
  8. actorRole = ""
  9. actorThumb = ""
  10. actorID = ""
  11. End Sub
  12. End Structure