26 lines
347 B
C#
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;
|
||
|
}
|
||
|
}
|
||
|
}
|