- aggiunti EgtInterface e Language

- modificata finestra Copia Multipla
This commit is contained in:
Emmanuele Sassi
2025-07-08 16:21:01 +02:00
parent bdcda23197
commit 6deabc6be5
7 changed files with 150 additions and 44 deletions
+22
View File
@@ -0,0 +1,22 @@
Public Class Language
Private m_sName As String
Public ReadOnly Property Name As String
Get
Return m_sName
End Get
End Property
Private m_sFilePath As String
Public ReadOnly Property FilePath As String
Get
Return m_sFilePath
End Get
End Property
Sub New(sName As String, sFilePath As String)
m_sName = sName
m_sFilePath = sFilePath
End Sub
End Class