Files
EgtDOORCreator/CompoPanel/CompoType.vb
T
Nicola Pievani f365dee1c7 EgtDOORCreator 1.8d1 :
- Asterisco in fase di modifica;
- salvataggio in caso di cambio porta solo se presente asterisco;
- asterisco in fase di creazione nuova porta.
2017-04-06 18:17:33 +00:00

31 lines
627 B
VB.net

Public Class CompoType
Private m_Name As String
Public ReadOnly Property Name As String
Get
Return m_Name
End Get
End Property
Private m_DDFName As String
Public ReadOnly Property DDFName As String
Get
Return m_DDFName
End Get
End Property
Private m_Path As String
Public ReadOnly Property Path As String
Get
Return m_Path
End Get
End Property
Sub New(sName As String, sDDFName As String, sPath As String)
m_Name = sName
m_DDFName = sDDFName
m_Path = sPath
End Sub
End Class