-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFvProperty.vb
More file actions
29 lines (27 loc) · 770 Bytes
/
FvProperty.vb
File metadata and controls
29 lines (27 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Public Class FvProperty
Private _name As String
Public Property Name() As String
Get
Return _name
End Get
Private Set(ByVal value As String)
_name = value
End Set
End Property
Private _translation As String
Public Property Translation() As String
Get
If _translation Is Nothing Then
Return _name
End If
Return _translation
End Get
Private Set(ByVal value As String)
_translation = value
End Set
End Property
Public Sub New(ByVal name As String, ByVal translation As String)
Me.Name = name
Me.Translation = translation
End Sub
End Class