You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Darwinism/src/LINQ/RQL/NodeMap.vb

16 lines
325 B

Imports Microsoft.VisualBasic.Data.IO
''' <summary>
''' A descriptor of the specific resource file
''' </summary>
Public Class NodeMap
Public Property resources As List(Of String)
Public ReadOnly Property size As Integer
Get
Return resources.Count
End Get
End Property
End Class