mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
15 lines
228 B
C#
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;
|
|
}
|
|
}
|
|
}
|