mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
22 lines
356 B
C#
22 lines
356 B
C#
using System.Collections;
|
|
|
|
namespace Microsoft.Zune.Util
|
|
{
|
|
public class DownloadManagerMoveArguments
|
|
{
|
|
private IList m_tasks;
|
|
|
|
private int m_position;
|
|
|
|
public int Position => m_position;
|
|
|
|
public IList Tasks => m_tasks;
|
|
|
|
internal DownloadManagerMoveArguments(IList Tasks, int position)
|
|
{
|
|
m_position = position;
|
|
m_tasks = Tasks;
|
|
}
|
|
}
|
|
}
|