Changes for issue #121
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
Imports System.Xml.Serialization
|
||||
|
||||
<XmlRoot("Session")>
|
||||
Public Class Session
|
||||
Private sGame As String
|
||||
Private sStart As String
|
||||
Private sEnd As String
|
||||
Private dHours As Double
|
||||
|
||||
<XmlElement("Game")>
|
||||
Public Property GameName As String
|
||||
Set(value As String)
|
||||
sGame = value
|
||||
End Set
|
||||
Get
|
||||
Return sGame
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<XmlElement("Start")>
|
||||
Public Property StartDate As String
|
||||
Set(value As String)
|
||||
sStart = value
|
||||
End Set
|
||||
Get
|
||||
Return sStart
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<XmlElement("End")>
|
||||
Public Property EndDate As String
|
||||
Set(value As String)
|
||||
sEnd = value
|
||||
End Set
|
||||
Get
|
||||
Return sEnd
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<XmlElement("Hours")>
|
||||
Public Property Hours As Double
|
||||
Set(value As Double)
|
||||
dHours = value
|
||||
End Set
|
||||
Get
|
||||
Return dHours
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
Reference in New Issue
Block a user