14 lines
325 B
C#
14 lines
325 B
C#
using System;
|
|
|
|
namespace Pilz.UI
|
|
{
|
|
public class PaintingObjectEventArgs : EventArgs
|
|
{
|
|
public PaintingObject[] PaintingObjects { get; private set; } = null;
|
|
|
|
internal PaintingObjectEventArgs(PaintingObject[] paintingObjects)
|
|
{
|
|
PaintingObjects = paintingObjects;
|
|
}
|
|
}
|
|
} |