Files
Pilz/Pilz.UI.WinForms/PaintingControl/EventArgs/PaintingObjectEventArgs.vb
2025-06-16 11:50:17 +02:00

20 lines
462 B
VB.net

' Nicht gemergte Änderung aus Projekt "Pilz.UI (net8.0-windows)"
' Vor:
' Imports System.Windows.Forms
' Imports Newtonsoft.Json
' Nach:
' Imports System.Windows.Forms
'
' Imports Newtonsoft.Json
Public Class PaintingObjectEventArgs
Inherits EventArgs
Public ReadOnly Property PaintingObjects As PaintingObject() = Nothing
Friend Sub New(paintingObjects As PaintingObject())
_PaintingObjects = paintingObjects
End Sub
End Class