d3e9474417
- correzzioni varie
22 lines
533 B
VB.net
22 lines
533 B
VB.net
Public Class JsonEstimationDetail
|
|
|
|
Private m_JsonGenWinParam As JsonGenWinParam
|
|
Public ReadOnly Property JsonGenWinParam As JsonGenWinParam
|
|
Get
|
|
Return m_JsonGenWinParam
|
|
End Get
|
|
End Property
|
|
|
|
Private m_JsonWindowList As List(Of JsonWindowRow)
|
|
Public ReadOnly Property JsonWindowList As List(Of JsonWindowRow)
|
|
Get
|
|
Return m_JsonWindowList
|
|
End Get
|
|
End Property
|
|
|
|
Sub New(JsonGenWinParam As JsonGenWinParam, JsonWindowList As List(Of JsonWindowRow))
|
|
|
|
End Sub
|
|
|
|
End Class
|