mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
24 lines
284 B
C#
24 lines
284 B
C#
namespace CPF.Mac.Foundation
|
|
{
|
|
public class NSUrlAsyncResult
|
|
{
|
|
public NSUrlResponse Response
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSData Data
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSUrlAsyncResult(NSUrlResponse response, NSData data)
|
|
{
|
|
Response = response;
|
|
Data = data;
|
|
}
|
|
}
|
|
}
|