CPF/CPF.Mac/Mac/AppKit/NSImageLoadRepresentationEventArgs.cs

26 lines
347 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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;
}
}
}