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

15 lines
228 B
C#
Raw Normal View History

2021-11-11 11:18:46 -06:00
namespace MicrosoftZuneLibrary
{
public class FirmwareUpdateProgressArgs
{
private UpdateStep m_Step;
public UpdateStep Step => m_Step;
public FirmwareUpdateProgressArgs(UpdateStep Step)
{
m_Step = Step;
}
}
}