frmCategoryEdit umbenannt in frmSettings Weitere (erfolglose) Tests, um die richtige Zeitzone bei Google-Kalender-Terminen zu hinterlegen
16 lines
549 B
VB.net
16 lines
549 B
VB.net
Public Class EventEntry
|
|
Public Property StartDate As Date = New Date(1900, 1, 1)
|
|
Public Property EndDate As Date = New Date(1900, 1, 1)
|
|
Public Property AllDay As Boolean
|
|
Public Property Category As String
|
|
Public Property Subject As String
|
|
Public Property Location As String
|
|
Public Property Status As String
|
|
Public Property IsInvalid As Boolean
|
|
Public Property Exclude As Boolean
|
|
Public Property RowIndex As Integer
|
|
|
|
Public Property TimeZoneKey As String = General.Settings.DefaultTimezoneId
|
|
|
|
End Class
|