mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
27 lines
499 B
C#
27 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.Zune.Library
|
|
{
|
|
public class ZuneQueryList : IDisposable
|
|
{
|
|
internal ZuneQueryList(EQueryType queryType)
|
|
{
|
|
|
|
}
|
|
|
|
public bool IsEmpty { get; protected set; }
|
|
|
|
public bool IsDisposed { get; protected set; }
|
|
|
|
public int Count { get; protected set; }
|
|
|
|
public void Dispose()
|
|
{
|
|
IsDisposed = true;
|
|
}
|
|
}
|
|
}
|