Files
ZuneShell.dll/ZuneDBApi/MicrosoftZuneLibrary/FirmwareUpdateProgressArgs.cs
T

15 lines
228 B
C#

namespace MicrosoftZuneLibrary
{
public class FirmwareUpdateProgressArgs
{
private UpdateStep m_Step;
public UpdateStep Step => m_Step;
public FirmwareUpdateProgressArgs(UpdateStep Step)
{
m_Step = Step;
}
}
}