CPF/CPF.Mac/Mac/AppKit/NSImageLoadRepresentationEventArgs.cs
2023-11-21 23:05:03 +08:00

26 lines
347 B
C#

using System;
namespace CPF.Mac.AppKit
{
public class NSImageLoadRepresentationEventArgs : EventArgs
{
public NSImageRep Rep
{
get;
set;
}
public NSImageLoadStatus Status
{
get;
set;
}
public NSImageLoadRepresentationEventArgs(NSImageRep rep, NSImageLoadStatus status)
{
Rep = rep;
Status = status;
}
}
}