Add tagging support for games

This commit is contained in:
Michael J. Seiferling
2015-11-13 17:59:27 -06:00
parent 5e5da3c068
commit 5357fb214d
18 changed files with 1452 additions and 27 deletions
+23
View File
@@ -0,0 +1,23 @@
Public Class clsGameTag
Private sTagID As String = String.Empty
Private sMonitorID As String = String.Empty
Property TagID As String
Get
Return sTagID
End Get
Set(value As String)
sTagID = value
End Set
End Property
Property MonitorID As String
Get
Return sMonitorID
End Get
Set(value As String)
sMonitorID = value
End Set
End Property
End Class
+23
View File
@@ -0,0 +1,23 @@
Public Class clsTag
Private sTagID As String = Guid.NewGuid.ToString
Private sTagName As String = String.Empty
Property ID As String
Get
Return sTagID
End Get
Set(value As String)
sTagID = value
End Set
End Property
Property Name As String
Get
Return sTagName
End Get
Set(value As String)
sTagName = value
End Set
End Property
End Class