PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/NfoLibrary/Shared/SubtitleDetails.vb

#
Visual Basic | 20 lines | 14 code | 6 blank | 0 comment | 0 complexity | fba5fcbc76d799edcbf4f9aa34656772 MD5 | raw file
Possible License(s): GPL-2.0
  1. Imports ProtoXML
  2. Public Class SubtitleDetails
  3. Inherits ProtoPropertyGroup
  4. Public Property Language As New ProtoProperty(Me, "language")
  5. Public Sub New()
  6. MyBase.New(Nothing, Nothing)
  7. End Sub
  8. Public Sub New(ByRef Parent As IProtoXBase, ByVal NodeName As String)
  9. MyBase.New(Parent, NodeName)
  10. End Sub
  11. Public Overrides Function CreateNew() As ProtoXML.ProtoXChildBase
  12. Return New SubtitleDetails
  13. End Function
  14. End Class