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

26 lines
291 B
C#

using System;
namespace CPF.Mac.AppKit
{
public class NSImagePartialEventArgs : EventArgs
{
public NSImageRep Rep
{
get;
set;
}
public long Rows
{
get;
set;
}
public NSImagePartialEventArgs(NSImageRep rep, long rows)
{
Rep = rep;
Rows = rows;
}
}
}