mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
27 lines
347 B
C#
27 lines
347 B
C#
using System;
|
|
|
|
namespace Microsoft.Zune.Configuration
|
|
{
|
|
public class EventArgsHR : EventArgs
|
|
{
|
|
private int _003Cbacking_store_003EHResult;
|
|
|
|
public int HResult
|
|
{
|
|
get
|
|
{
|
|
return _003Cbacking_store_003EHResult;
|
|
}
|
|
set
|
|
{
|
|
_003Cbacking_store_003EHResult = value;
|
|
}
|
|
}
|
|
|
|
public EventArgsHR()
|
|
{
|
|
HResult = 0;
|
|
}
|
|
}
|
|
}
|