/Structures/TempMovieActors.vb
# · Visual Basic · 12 lines · 12 code · 0 blank · 0 comment · 0 complexity · 149bcfa59a1bb3ceda686865cb13ad98 MD5 · raw file
- Public Structure str_TempMovieActors
- Public Shared actorName As String
- Public Shared actorRole As String
- Public Shared actorThumb As String
- Public Shared actorID As String
- 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'
- actorName = ""
- actorRole = ""
- actorThumb = ""
- actorID = ""
- End Sub
- End Structure